我在Laravel中使用AJAX创建了关注按钮。当我点击跟随时,它会随着id的变化而变成unfollow。我试图再次单击取消关注按钮,它没有在点击功能上执行取消关注,但保留了之前的点击功能。
HTML
<a id="followAnchor" type="submit" class="btn btn-info" /><i class="fa icon-user-follow"></i> Follow</a>
</div>
AJAX
$('#followAnchor').on("click", function(e){
var followId = document.getElementById('followAnchor');
$.ajax({
url: "{{ URL::route('follow-post') }}",
type: 'POST',
data: JSON.stringify(arr),
contentType: 'application/json; charset=utf-8',
dataType: 'json',
}).done(function(response) {
if(response.errors)
{
}
else if (response.success){
followId.innerHTML = "<i class='fa icon-user-follow'></i>" + "Unfollow";
document.getElementById('followAnchor').id = 'unfollowAnchor';
}
});
}
$('#unfollowAnchor').on("click", function(e){
var unfollowId = document.getElementById('unfollowAnchor');
$.ajax({
url: "{{ URL::route('unfollow-post') }}",
type: 'POST',
data: JSON.stringify(arr),
contentType: 'application/json; charset=utf-8',
dataType: 'json',
}).done(function(response) {
if(response.errors)
{
}
else if (response.success){
unfollowId.innerHTML = "<i class='fa icon-user-follow'></i>" + "Follow";
document.getElementById('unfollowAnchor').id = 'followAnchor';
}
});
});
答案 0 :(得分:5)
事件在变更后不会神奇地受到约束。代码运行后,它不会继续检查新元素。
冒泡的例子:
$(document).on("click", "#followAnchor", function(e){ /* code here */ });
$(document).on("click", "#unfollowAnchor", function(e){ /* code here */ });
答案 1 :(得分:0)
您需要使用event-delegation,因为您在当时不存在的元素上注册了事件列表器。
$('#unfollowAnchor').on("click", function(e){
必须是
$(document).on("click", '#unfollowAnchor',function(e){
我不会在这里使用ID,而是添加或删除特定类:
$(followId).addClass('unfollow').removeClass('follow');
作为一个例子。