我卡在检查 StartAll 和 StopAll
我想要实现的是->
1> 选中 All 复选框后,所有功能(stopall 除外)都将被选中和禁用。
2>在选择 Stopall 时,所有功能将被取消选择并禁用。
3>B,D & E 的值将在文本框中选择。
这是 jsfiddle 链接:http: //jsfiddle.net/bigzer0/PKRVR/5/
<div align="center" id="checkboxes">
<input type="checkbox" name="startall" data-name="Startall" class="check" id="check" value="all"> All
<input type="checkbox" name="stopall" data-name="Stopall" class="check" id="check" value="stopall"> STOPall
<input type="checkbox" name="apple" data-name="Apple" class="check" id="check" value="a"> Apple
<input type="checkbox" name="ball" data-name="Ball" disabled="disabled" checked="checked" id="check" value="b"> Ball
<input type="checkbox" name="cat" data-name="Cat" class="check" id="check" value="c"> Cat
<input type="checkbox" name="dog" data-name="Dog" checked="checked" disabled="disabled" id="check" value="d"> Dog
<input type="checkbox" name="elephant" data-name="Elephant" disabled="disabled" checked="checked" id="check" value="e">
Elephant
</div>
<input type="text" name="policyName" id="policyName" title="Policy Name" class="cpolicyname" value="Start" readonly="readonly" >
<input type="text" name="features" title="Policy Features" class="cfeatures" id="features" readonly="readonly" size="60">
我的(噩梦)jquery:
$(document).ready(function() {
$('.check').click(function(){
$("#policyName").val('Start');
$("#features").val('');
$(".check").each(function(){
if($(this).prop('checked')){
$("#policyName").val($("#policyName").val() + $(this).val());
$("#features").val($("#features").val() + $(this).data('name'));
}
});
});
});
任何意见都将受到赞赏和欢迎。