博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 分页
阅读量:6229 次
发布时间:2019-06-21

本文共 5282 字,大约阅读时间需要 17 分钟。

                         
页,共
页,每页
条 共
View Code
View Code
if (parseInt($("#pageCount").val()) == parseInt($("#pageIndex").val())) {                $("#nextPage,#endPage").addClass("disabled");                $("#nextPage,#endPage").attr("href", "javascript:void(0);");            }            if (parseInt($("#pageCount").val()) == 1) {                $("#firstPage,#prevPage,#nextPage,#endPage").addClass("disabled");                $("#firstPage,#prevPage,#nextPage,#endPage").attr("href", "javascript:void(0);");            }            $("#fenye a").click(function () {                var pageIndex = parseInt($("#pageIndex").val());                var pageCount = parseInt($("#pageCount").val());                var id = $(this).attr("id");                var href = $(this).attr("href");                var curr = 1;                curr = id == "firstPage" ? 1 : parseInt(curr);                curr = id == "endPage" ? pageCount : parseInt(curr);                curr = id == "prevPage" ? parseInt(pageIndex - 1) : parseInt(curr);                curr = id == "nextPage" ? parseInt(pageIndex + 1) : parseInt(curr);                curr = curr > pageCount ? pageCount : parseInt(curr);                curr = curr <= 0 ? 1 : parseInt(curr);                if (href == "" || typeof (href) == "undefined") {                    $("#pageIndex").val(curr);                    GetContractByDept($("#DeptID").val(), '', '', '', '', '', '', $("#pageIndex").val(), $("#pageSize").val());                }            })
View Code
function GetContractByDept(deptid, actName, actNum, beginTime, endTime, operator, oppOperator, pageIndex, pageSize) {            $("#ContractList tbody tr").remove();            $("#selectAll").get(0).checked = false;            $.ajax({                url: 'Action.ashx?t=GetContractByDeptId',                data: { deptid: deptid, actName: actName, actNum: actNum, beginTime: beginTime, endTime: endTime, operator: operator, oppOperator: oppOperator, pageIndex: pageIndex, pageSize: pageSize },                type: 'POST',                dataType: "json",                success: function (result) {                    if (result.success) {                        $(result.data).each(function (index) {                            var html = "";                            html += "";                            html += "";                            html += "";                            html += "" + this.FileType + "";                            html += "" + this.ContractName + "";                            html += "" + this.FileSize + "";                            html += "" + this.OwnerDisplayName + "";                            html += "" + this.CreateTime + "";                            html += " ";                            $("#ContractList tbody").append(html);                        });                        $("#pageIndex").val(result.pageIndex);                        $("#pageSize").val(result.pageSize);                        $("#recordCount").val(result.recordCount);                        $("#pageCount").val(Math.ceil(result.recordCount / result.pageSize));                        $(".dispalyPageIndex").text(result.pageIndex);                        $("#displayPageSize").text(result.pageSize);                        $("#dispalyPageCount").text($("#pageCount").val());                        $("#displaRrecordCount").text($("#recordCount").val());                        if ($("#ContractList tbody tr").length < 1) {                            $("#ContractList tbody").html("暂无数据");                        }                        $("input[name='chkDname']").click(function () {                            if (!$(this).isChecked) {                                $("#selectAll").prop("checked", false);                            }                            var chsub = $("input[name='chkDname']").length;                            var checkedsub = $("input[name='chkDname']:checked").length;                            if (chsub == checkedsub) {                                $("#selectAll").prop("checked", true);                            }                        });                        $(".btnPower").click(function () {                            var url = $(this).attr("data-url");                            var name = $(this).attr("data-name");                            layer.open({                                type: 2,                                title: name,                                shadeClose: true,                                shade: 0.4,                                area: ['680px', '350px'],                                content: url                            });                        })                    } else {                        $("#ContractList tbody").html("暂无数据");                    }                }            });        }
View Code

 

 

转载地址:http://mbina.baihongyu.com/

你可能感兴趣的文章
PMP考试的过与只是
查看>>
java 监控 收集资料3(收集中)
查看>>
Apache Pulsar中的地域复制,第1篇:概念和功能
查看>>
getRealPath()和getContextPath()的区别
查看>>
Hadoop MapReduce编程 API入门系列之wordcount版本2(六)
查看>>
一个页面标题和过滤输出的解决方案(上)
查看>>
python pip install 出现 OSError: [Errno 1] Operation not permitted
查看>>
oracle12C 重做日志
查看>>
Linux ubuntu lamp安装配置环境phpmyadmin
查看>>
data guard 的部署
查看>>
枚举、模拟、递推
查看>>
sublime text 3安装
查看>>
awk-sed
查看>>
EXTJS4-----前言
查看>>
iOS11里判断Safari浏览器是无痕模式还是正常模式?
查看>>
zookeeper与kafka安装部署及java环境搭建(发布订阅模式)
查看>>
error C2244 "无法将函数定义与现有的声明匹配"的解决方法
查看>>
记一个 dubbo中hessian2反序列化 Map 的一个问题
查看>>
HDU_1505_矩阵中的最大矩形_dp
查看>>
HDU_1398_母函数
查看>>