我創建了一個非常簡單的,類似YouTube的,喜歡/不喜歡的按鈕和一個綠色的紅色評級欄,除「清除投票」按鈕外,所有工作都很好,我不知道如何重置值到0;如何重置投票
$(function(){
var n = 1;
var m=1;
$(".voteUp").click(function(){
$(".good").stop().animate({'width':'+=2px'});
$(this).css('background','#060');
$(".voteDown").css('background','-moz-linear-gradient(top, #5e5e5e 0%, #353535 100%)');
$("#votersGood").text(n+++" likes");
//$(this).attr('disabled','disabled');
});
$(".voteDown").click(function(){
$(".good").stop().animate({'width':'-=2px'});
$(this).css('background','#C00');
$(".voteUp").css('background','-moz-linear-gradient(top, #5e5e5e 0%, #353535 100%)');
$("#votersBad").text(m+++" dislikes");
//$(this).attr('disabled','disabled');
});
$("#clear").click(function(){
$(".message").fadeIn(2000).fadeOut(2000);
});
});
如何將「n」和「m」值重置爲0,因此計數可以從0開始?
您試過n = 0或m = 0嗎?到目前爲止,您嘗試過哪些方法沒有奏效? – Ger
究竟哪一個是「明確投票」按鈕? –
#clear是「明確投票」 – misticx