码迷,mamicode.com
首页 > 移动开发 > 详细

手机版分页

时间:2015-11-23 09:53:34      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

    $("#orderMessage").touchwipe({
        wipeDown: function () {//向下滑

            if (Number($("#pageIndex").val()) != 0) {//不是第一页
                $("#pageIndex").val(Number($("#pageIndex").val()) - 1);

                $(".verification span").text("加载数据成功!");
                $(".verification").show(0).delay(500).hide(0);

            } else {

                $(".verification span").text("已经第一页!");
                $(".verification").show(0).delay(500).hide(0);
            }
            var pageIndex = $("#pageIndex").val();
            courierOrderExis(pageIndex);
        },
        wipeUp: function () {//向上滑

            if ((Number($("#pageIndex").val()) + 1) != $("#rowsCount").val()) {//不是最后一页
                $("#pageIndex").val(Number($("#pageIndex").val()) + 1);

                $(".verification span").text("加载数据成功!");
                $(".verification").show(0).delay(500).hide(0);
            } else {

                $(".verification span").text("已经最后一页!");
                $(".verification").show(0).delay(500).hide(0);
            }
            var pageIndex = $("#pageIndex").val();
            courierOrderExis(pageIndex);
        },
    });

手机版分页

标签:

原文地址:http://www.cnblogs.com/wangtiantian/p/4987389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!