标签:data attr cti 跳转 get each ajax url this
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); } }) }); });
标签:data attr cti 跳转 get each ajax url this
原文地址:http://www.cnblogs.com/8000cabbage/p/7895092.html