书签 分享 收藏 举报 版权申诉 / 21

类型JSP自定义标签要点.docx

  • 文档编号:27888335
  • 上传时间:2023-07-06
  • 格式:DOCX
  • 页数:21
  • 大小:71.76KB

"+me.width+"px;height:

"+me.height+"px;'>"+

"共"+me.allCount+"条  当前第"+me.currentPageIndex+"页(共"+me.allPageCount+"页)  每页"+me.pageNumber+"条 "+

" "+

" "+

" "+

""+

"

";

me.getData();

addEvent();

}

//数据获取

me.getData=function(){

$.post(

me.actionPath,

{

currentPage:

(me.currentPageIndex-1),

allCount:

me.allCount,

pageNumber:

me.pageNumber

},

function(result){

$("#grid"+me.id+"").html(result);

}

);

}

//翻页控制

functionaddEvent(){

//首页

$("#first"+me.id+"").click(

function(){

if(1==me.currentPageIndex){

returnfalse;

}else{

me.currentPageIndex=1;

$("#current"+me.id+"").html(me.currentPageIndex);

me.getData();

}

}

);

//上一页

$("#p"+me.id+"").click(

function(){

if(1==me.currentPageIndex){

returnfalse;

}else{

me.currentPageIndex=me.currentPageIndex-1;

$("#current"+me.id+"").html(me.currentPageIndex);

me.getData();

}

}

);

//下一页

$("#n"+me.id+"").click(

function(){

if(me.allPageCount==me.currentPageIndex){

returnfalse;

}else{

me.currentPageIndex=me.currentPageIndex+1;

$("#current"+me.id+"").html(me.currentPageIndex);

me.getData();

}

配套讲稿:

如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

特殊限制:

部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

关 键  词:
JSP 自定义 标签 要点
提示  冰豆网所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
关于本文
本文标题:JSP自定义标签要点.docx
链接地址:https://www.bdocx.com/doc/27888335.html
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2008-2022 冰点文档网站版权所有

经营许可证编号:鄂ICP备2022015515号-1

收起
展开