当今的网站设计越来越注重用户体验,无刷新点赞就是其中之一。本文将介绍如何使用 模板 实现无刷新点赞功能。
首先,我们需要在页面中引入 jQuery 文件,可以通过以下代码实现:
1<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> |
接下来,在合适的位置添加以下代码:
01 | <button class= "support" >点赞</button> <!--按钮---> |
02 | <div id = "support_number" >{content:likes}</div> <!--赞数量--> |
03 | <p class= "supported" ></p> <!--已赞提示--> |
07 | $( '.support' ).on( 'click' , //绑定事件 |
10 | url: '{content:likeslink}' , //点赞链接 |
14 | success: function (data) { |
15 | $( '#support_number' ).load(location.href + " #support_number" ); //点赞后刷新#support_number |
16 | if (data.state) {} else { |
17 | $( ".supported" ).html( "已点赞!" ) //已赞提示 |
19 | error: function (xhr, status, error) { |
本文地址:http://demo.rezhanwang.com/jianzhanjiaocheng/3224.html