首先點擊我的按鈕點擊功能的作品,但一旦再次點擊刷新頁面點擊解除綁定不被識別。我需要防止任何默認的點擊事件以及點擊後禁用按鈕。如何防止默認並禁用href
<a href="" class="red-btn2">Save this Property</a>
$(".red-btn2").click(function(event){
event.preventDefault();
$(this).unbind('click');
$(this).css({
'background-color':'#666666',
'text-align':'center'
});
$(this).text("Added to Favorites");
});
您解除綁定點擊事件....當然它不會有任何附加的東西,所以它會成爲一個鏈接... – epascarello