ThinkPHP5杂技
Posted 八千岁将军
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP5杂技相关的知识,希望对你有一定的参考价值。
TP5分页默认是get方式做跳转
想要实现ajax样式,通过事先绑定click事件,然后移除href属性。
$(document).ready(function () { $(".pagination > li > a").each(function () { $(this).click(function () { var href = $(this).attr(‘href‘); $(this).removeAttr(‘href‘); $.ajax({ type: "GET", url: href, dataType: "html", success: function (data) { $(".inbox-body").html(data); } }) }); });
以上是关于ThinkPHP5杂技的主要内容,如果未能解决你的问题,请参考以下文章