0
一旦您點擊以投票表決啓用它,它只能通過單擊向下投票來禁用。我如何做到這一點,如果我點擊一個啓用的按鈕,它將被禁用。如何使用jQuery禁用/啓用按鈕/鏈接?
$("a.vote_down").click(function() {
//get the id
the_id = $(this).attr('id');
//the main ajax request
$.ajax({
type: "POST",
data: "action=vote_down&id="+$(this).attr("id"),
url: "votes.php",
success: function(msg) {
$(".vote_down").addClass("active");
$(".vote_up").removeClass("active");
$("span#votes_count").html(msg);
}
});
});
其中一個鏈接:
<a href='javascript:;' class='vote_up<?php if($liked["points"]=="1") echo " active";?>' id='<?php echo $id; ?>'>Vote Up</a>
根據什麼的''的'標籤href'屬性,您可能還需要添加'功能(E )'用'e.preventDefault()'。 – 2012-01-03 19:37:32