我想在我的if
語句中使用三個條件。這裏是我的代碼:如何在Jquery添加三個條件
<script>
jQuery(document).ready(function() {
var num_one; var num_two; var num_three;
$("#control").attr("disabled", "disabled");
$('#col-1 li').click(function(){ num_one = true; getState();});
$('#col-2 li').click(function(){ num_two = true; getState();});
$('#col-3 li').click(function(){ num_three = true; getState();});
function getState(){
if ((num_one == true) & (num_two == true) & (num_three == true)) {
$("#control").removeAttr("disabled");
}
}
/*$('#col-1 li').click(function(){$("#control").removeAttr("disabled");*/
});
/**$("#enableBtn").click(function() {
$("#clearBtn").removeAttr("disabled");
});**/
</script>
這是工作,當我用只有兩個條件:if ((num_one == true) & (num_two == true))
但是當我添加第三個條件這是行不通的。如何在if語句中添加三個條件?
它適用於'如果(num_one && num_two){'和'如果(num_one && num_three){',但並沒有對'如果(num_one && num_two && num_three)工作{ ' – ahkeno 2012-02-09 16:41:41
在此處運行良好:http://jsbin.com/eyogoj/edit – 2012-02-09 16:44:20