贊:奇數次記一,偶數次清零,點擊不同意贊數減一(如果點過)。 不同意:與贊道理相同
<script type="text/javascript">
var s=0;
$(document).ready(function(){
$("#zan").click(function(){
if(s==1){
s=0;
}
else{
s=1;
}
if(s==1){
$("#hehe").text("0");
$("#zan1").text("1");
}
else{
$("#hehe").text("0");
$("#zan1").text("0");
}
})
})
$(document).ready(function(){
$("#ladao").click(function(){
if(s==-1){
s=0;
}
else{
s=-1;
}
if(s==-1){
$("#hehe").text("1");
$("#zan1").text("0");
}
else{
$("#hehe").text("0");
$("#zan1").text("0");
}
})
})
</script>
<body>
<button>贊<b id="zan1"></b></button><button>呵呵<b id="hehe"></b></button>
<p><button id="zan">贊</button><button id="ladao">拉倒</button></p>
</body>
\