温馨提醒

如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢

本文最后更新于2023年11月15日,已超过 180天没有更新

先引入jq文件

<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>

无须使用 API,把以下代码放入合适的位置即可,可自定义css

<button class="support">点赞</button>  <!--按钮--->
<div id="support_number">{content:likes}</div>  <!--赞数量-->
<p class="supported"></p>   <!--已赞提示-->
<!--ajax-->
<script>
$('.support').on('click',  //绑定事件
function() {
$.ajax({
url: '{content:likeslink}',  //点赞链接
data: {
'likes': 'likes'
},
success: function(data) {
$('#support_number').load(location.href + " #support_number");  //点赞后刷新#support_numbe
if (data.state) {} else {
$(".supported").html("已点赞!")  //已赞提示
}},
error: function(xhr, status, error) {
console.log(error)
}
});
})
</script>

 

历史上的今天
11月
15
    抱歉,历史上的今天作者很懒,什么都没写!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。