我正在使用JQM(jQueryMobile)并且需要在组中选中所有复选框,直到选中一个,然后只需要选择一个,除非它是检查所有然后需要全部。
问题是我无法使用复选框组的Id或Name属性,因此我尝试使用class属性。
以下是标记示例(但功能无效):http://jsfiddle.net/HfLq3/7/
HTML:
<div data-role="page">
<form id="chips_form" name="chips_form" action="#" method="post">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Choose as many snacks as you'd like:</legend>
<input type="checkbox" name="checkbox-1a" id="checkbox-1a" class="custom chips" />
<label for="checkbox-1a">Cheetos</label>
<input type="checkbox" name="checkbox-2a" id="checkbox-2a" class="custom chips" />
<label for="checkbox-2a">Doritos</label>
<input type="checkbox" name="checkbox-3a" id="checkbox-3a" class="custom chips" />
<label for="checkbox-3a">Fritos</label>
<input type="checkbox" name="checkbox-4a" id="checkbox-4a" class="custom chips" />
<label for="checkbox-4a">Sun Chips</label>
<input type="checkbox" name="checkbox-5a" id="checkbox-5a" class="custom chips" />
<label for="checkbox-5a">Select All</label>
</fieldset>
</div>
<div data-role="fieldcontain">
<button type="submit" name="submit" value="chips-submit">Submit</button>
</div>
</form>
</div>
JS:
$(".chips").change(function() {
alert('selected Value(s): '+$(this).val());
});
$('.chips').each(function() {
$(this).attr('required','required');
});
答案 0 :(得分:1)
$(".chips").change(function() {
$('.chips').attr('required', $(this).attr("checked") ? '': 'required');
});
$('.chips').attr('required','required');