我使用以下脚本在博客上的帖子上制作喜欢
$('.like-unlike').on('click',function() {
if ($(this).html() == " Like ") {
postID = this.id.replace('post_', '');
$.ajax({
url: 'auth/classes/comments.php',
type: 'GET',
data: 'token=<?php echo $token; ?>&post='+escape(postID)+'&like=yes',
success: function(data) {
console.log(data);}
});
$('.right#stats_'+postID).text(function (idx, text) {
text = $.trim(text);
var count = parseInt(text.match(/^(\d+)/), 10) || 0;
return text.replace(/^\d+/, ++count);
});
$(this).html(' Liked ');
}
我实现了一个分页脚本,在页面加载后向服务器发送请求,以便在文档下载后将内容添加到页面中..现在我喜欢的脚本无效..如果我运行此脚本它运行的萤火虫,请帮忙
答案 0 :(得分:1)
尝试:
$('body').on('click','.like-unlike',function() {
...
});
答案 1 :(得分:1)
$(document).on('click','.like-unlike',function() {
答案 2 :(得分:1)
将事件处理程序更改为委派样式 -
$('body').on('click', '.like-unlike', function() {