最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于jquery的無刷新分頁技術(shù)

 更新時(shí)間:2011年06月11日 00:34:52   作者:  
基于jquery的無刷新分頁技術(shù),需要的朋友可以參考下。
復(fù)制代碼 代碼如下:

<script src="script/jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
var index = 0;
$(document).ready(function () {
$.post("Default5.aspx", { name: index }, function (msg) {
$("tr:gt(0)").remove();
var artice = msg;
for (var i = 0; i < 5; i++) {
$("table").append("<tr><td>" + artice[i]["ID"] + "</td><td>" + artice[i]["Writer"] + "</td><td>" + artice[i]["Title"] + "</td></tr>");
}
}, "json");
});
$(document).ready(function () {
$("a").click(function () {
if ($(this).html() == "下一頁") {
index = index + 5;
if (index > 10) {
index = 10;
}
}
if ($(this).html() == "上一頁") {
index = index - 5;
if (index < 0) {
index = 0;
}
}
// alert(index);
$.post("Default5.aspx", { name: index }, function (msg) {
// alert(msg[0]["ID"]);
$("tr:gt(0)").remove();
var artice = msg;
for (var i = 0; i < 5; i++) {
// alert("11");
$("table").append("<tr><td>" + artice[i]["ID"] + "</td><td>" + artice[i]["Writer"] + "</td><td>" + artice[i]["Title"] + "</td></tr>");
// $("table").append("<tr><td>1</td><td>2</td><td>3</td></tr>");
}
}, "json");
});
});
</script>

相關(guān)文章

最新評論

杨浦区| 万荣县| 平湖市| 简阳市| 浮梁县| 贵定县| 双城市| 桐梓县| 修水县| 洞头县| 泽普县| 潞城市| 南木林县| 普定县| 安远县| 象山县| 罗源县| 鄢陵县| 云安县| 高州市| 雷波县| 睢宁县| 吉隆县| 九江县| 灵川县| 广宗县| 白河县| 蓝山县| 奎屯市| 嘉祥县| 乌恰县| 文化| 化州市| 毕节市| 综艺| 岢岚县| 宝丰县| 山丹县| 西青区| 房产| 廊坊市|