2011-09-09 88 views

回答

2
$('input[type="checkbox"]').click(function(){ 
    if('input[type="checkbox"]').not(':checked').length == $('input[type="checkbox"]').length) 
    ///code for hiding the div 
}); 

這可以幫助, 我搜索了所有未覈對,如果數未覈對等於數複選框,然後檢查所有複選框。

1

試試這個

Wroking demo

$('input:checkbox').click(function() { 
    $("#userInfo") 
    .toggle(($('input:checkbox:checked').length == $('input:checkbox').length)); 
}); 

這個代碼將只顯示,如果所有的複選框被選中的div。我希望那是你正在尋找的。

相關問題