StartAll と StopAll のチェックに行き詰まっています
私が実装したいのはそれです->
1> すべてのチェックボックスを選択すると、すべての機能 (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'));
}
});
});
});
どんな意見でも歓迎します。