- 相關(guān)推薦
html無(wú)刷新分頁(yè)前端代碼
$(function () {
$.post("Test.ashx", { "action": "getpagecount" }, function (data, status) {
for (var i = 1; i <= data; i++) {
var td = $("<td><a href=''>" + i + "</a></td>");
$("#trpage").append(td);
}
$("#trpage td").click(function (e) {
e.preventDefault();
$.post("Test.ashx", { "action": "getpagedata", "pagenum": $(this).text() },
function (data, status)
{
var comments = $.parseJSON(data);
$("#ulorderlist").empty();
for (var i = 0; i < comments.length; i++) {
var comment = comments[i];
var li = $("<li>" + comment.OrderID + "--" + comment.OrderDate + "</li>");
$("#ulorderlist").append(li);
}
});
})
});
});
</script>
</head>
<body>
<ul id="ulorderlist">
</ul>
<table>
<tr id="trpage">
</tr>
</table>
</body>
</html>
【html無(wú)刷新分頁(yè)前端代碼】相關(guān)文章:
一段經(jīng)典php mysql分頁(yè)程序代碼08-11
如何設(shè)置html字體10-03
php語(yǔ)言字典代碼06-08
語(yǔ)義化的HTML結(jié)構(gòu)好處07-23
html元素水平居中的方法06-24
html語(yǔ)言中URL的用法06-20
上?佳袌(bào)考點(diǎn)及代碼09-28
簡(jiǎn)單的計(jì)算器代碼09-25
php動(dòng)態(tài)生成JavaScript代碼10-03
Bios錯(cuò)誤代碼介紹10-14