标签:
$("#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