码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP5杂技(二)

时间:2017-11-25 15:22:28      阅读:176      评论:0      收藏:0      [点我收藏+]

标签: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);
        }
      })
    });
  });

ThinkPHP5杂技(二)

标签:data   attr   cti   跳转   get   each   ajax   url   this   

原文地址:http://www.cnblogs.com/8000cabbage/p/7895092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!