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); })});
原文地址:https://www.cnblogs.com/wannglongfei/p/9719560.html
时间: 2024-10-06 17:11:22