jquery限制checkbox核取方塊被選中的數目

antzone發表於2017-04-05

在實際應用中,可能需要限制checkbox核取方塊被選中的數目。

下面就通過程式碼例項介紹一下如何實現此功能。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
li{list-style:none}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(document).ready(function() {
  $('input[type=checkbox]').click(function() {
    $("input[name='antzone']").attr('disabled', true);
    if ($("input[name='antzone']:checked").length >= 3) {
      $("input[name='antzone']:checked").attr('disabled', false);
    }else {
      $("input[name='antzone']").attr('disabled', false);
    }
  });
})
</script>
</head>
<body>
<ul>
 <li><input type="checkbox" name="antzone" value=1 />div教程</li>
 <li><input type="checkbox" name="antzone" value=2 />css教程</li>
 <li><input type="checkbox" name="antzone" value=3 />js教程</li>
 <li><input type="checkbox" name="antzone" value=4 />json教程</li>
 <li><input type="checkbox" name="antzone" value=5 />ajax教程</li>
 <li><input type="checkbox" name="antzone" value=6 />html5教程</li>
 <li><input type="checkbox" name="antzone" value=7 />softwhy.com</li>
</ul>
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

(1).$(document).ready(function() {}),文件結構完全載入完畢再去執行函式中的程式碼。

(2).$('input[type=checkbox]').click(function() {}),為核取方塊註冊click事件處理函式。

(3).$("input[name='antzone']").attr('disabled', true),首先將所有的name屬性值antzone核取方塊設定為不可用。

(4).if ($("input[name='antzone']:checked").length >= 3) {

  $("input[name='antzone']:checked").attr('disabled', false);

},如果被選中的核取方塊的數目大於等於3,那麼選中的元素設定為可用。

(5).else {

  $("input[name='antzone']").attr('disabled', false);

},如果選中的數目小於3,那麼核取方塊都是可用的。

二.相關閱讀:

(1).$('input[type=checkbox]')可以參閱jQuery [attribute=value]一章節。

(2).attr()方法可以參閱jQuery attr()一章節。

(3).:checked可以參閱jQuery :checked一章節。

相關文章