JavaScript的新手。页面加载时,它会将removeFav / addFav函数绑定到anchor
标记的click事件。一切都按预期工作,但当用户点击链接时,它会将用户带到页面顶部。我在每个函数的不同位置尝试了一个preventDefault()。它会停止click默认值,但会阻止其余代码运行或破坏功能。
preventDefault()仍然是正确的方法吗? preventDefault()应该去哪里?如何在每次单击链接时停止页面返回顶部。任何帮助将不胜感激。
JavaScript代码:
// Add a favorite
function addFav() {
var id = $(this).data('id');
var url = '/listings/' + id + '/favorite';
$.ajax({
url: url,
type: 'put',
success: function(){
$('this')
.addClass('active')
.off('click')
.on('click', removeFav)
;
console.log("success in add function");
},
error: function() {
console.log("error in add function");
}
});
}
// Remove a favorite
function removeFav() {
var id = $(this).data('id');
var url = '/listings/' + id + '/unfavorite';
$.ajax({
url: url,
type: "post",
dataType: "json",
data: {"_method":"delete"},
success: function(){
$('this')
.removeClass('active')
.off('click')
.on('click', addFav)
;
console.log("success in remove function")
},
error: function() {
console.log("error in remove function")
}
});
}
// Attach the add or remove event handler to favorite links
function attachFavHandler() {
$('a#fav').each( function() {
var status = $(this).hasClass('active');
if (status) {
$(this).on('click', removeFav);
} else {
$(this).on('click', addFav);
}
console.log(status)
});
}
// Lets get the 'favorites' party started
attachFavHandler();
Rails代码:
<% if user_signed_in? %>
<% if current_user.favorites.where(:listing_id => listing.id).first.nil? %>
<%= link_to "", "", :id => "fav", :class => "", :'data-id' => "#{listing.id}" %>
<% else %>
<%= link_to "", "", :id => "fav", :class => "active", :'data-id' => "#{listing.id}" %>
<% end %>
<% end %>
答案 0 :(得分:1)
您需要做的是在事件本身上调用preventDefault()方法。要获得该事件,您需要将事件传递给您的处理程序 - 事件绑定已经自动执行。
所以你需要做的就是在你的处理程序中使用这个事件。
function removeFav(e) {
e.preventDefault()
...
}