標籤:
$("#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);
},
});
手機版分頁