LoginSignup
7
8

More than 5 years have passed since last update.

チェックボックスの同時選択できる数を制限してみる

Posted at

自作jQueryプラグイン第二弾
https://github.com/uchikoba/jquery.checkboxSelectableLimitter

jQuery本体は別途読み込んでください。

Sample
<input type="checkbox" class="chk" value="1">チェック1
<input type="checkbox" class="chk" value="2">チェック2
<input type="checkbox" class="chk" value="3">チェック3
<input type="checkbox" class="chk" value="4">チェック4
<input type="checkbox" class="chk" value="5">チェック5

<script type="text/javascript" src="jquery.checkboxSelectableLimitter.js"></script>
<script type="text/javascript"><!--
$(document).ready(function () {
  $('.chk').checkboxSelectableLimitter({
    limit : 3,
    callback : showLimit
  });
});
function showLimit() {
  // 残り個数を表示するような処理
}
// --></script>
7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8