Сообщение от vaskin
|
Принцип тот же,выбрали 5 чекбоксов и форма заблокирована,выбрали меньше и форма доступна.
|
можно также как и с селектами, только определяем выделенные элементы по другому
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>demo</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-git.js'></script>
<script>
$(function(){
$('#form9').change(function () {
var allCheckbox = $(':checkbox', this), // все checkbox этой формы
checked = allCheckbox.filter(':checked'); // все выделенные
if (checked.length > 4) { // если таких 5 либо больше
allCheckbox.not(checked).attr('disabled', 'disabled');
} else {
allCheckbox.removeAttr('disabled'); // иначе все делаем доступными
}
});
});
</script>
</head>
<body>
<form name="matchform2" id="form9" method="post" action="">
<input name="sample_1" value="1" type="checkbox" />
<input name="sample_2" value="2" type="checkbox" />
<input name="sample_3" value="3" type="checkbox" />
<input name="sample_4" value="4" type="checkbox" />
<input name="sample_5" value="5" type="checkbox" />
<input name="sample_6" value="6" type="checkbox" />
<input name="sample_7" value="7" type="checkbox" />
<input name="sample_8" value="8" type="checkbox" />
<input name="sample_9" value="9" type="checkbox" />
<input name="sample_10" value="10" type="checkbox" />
</form>
</body>
</html>