TP5中Jquery实现ajax分页(简单)
Posted wannglongfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP5中Jquery实现ajax分页(简单)相关的知识,希望对你有一定的参考价值。
html代码:
tp5内置分页
<div id="page">
{$data.shop->render()}
</div>
jQuery代码:
//ajax分页
$(‘#page a‘).click(function (event) {
//阻止a标签的跳转
event.preventDefault();
//获取a标签中和href值
var href = $(this).attr(‘href‘);
//实现ajax分页
$.ajax({
url:href,
method:"post"
}).done(function (msg) {
//替换html中的body值
$(‘#body‘).html(msg);
})
});
以上是关于TP5中Jquery实现ajax分页(简单)的主要内容,如果未能解决你的问题,请参考以下文章