admin管理员组文章数量:1341740
I have multiple multi-select boxes with the same class and i want to unselect all on an event. They have all a div with the same class class_for_all_multi_selects
around them.
$("#element_to_uncheck_all_options").change(function() {
$('.class_for_all_multi_selects'). ...?
});
<div class="class_for_all_multi_selects">
<select multiple="multiple" name="1">
<option value="1">option1</option>
<option value="2">option2</option>
</select>
</div>
<div class="class_for_all_multi_selects">
<select multiple="multiple" name="2">
<option value="1">option1</option>
<option value="2">option2</option>
</select>
</div>
How can i uncheck multiple select box options by class with jquery?
I have multiple multi-select boxes with the same class and i want to unselect all on an event. They have all a div with the same class class_for_all_multi_selects
around them.
$("#element_to_uncheck_all_options").change(function() {
$('.class_for_all_multi_selects'). ...?
});
<div class="class_for_all_multi_selects">
<select multiple="multiple" name="1">
<option value="1">option1</option>
<option value="2">option2</option>
</select>
</div>
<div class="class_for_all_multi_selects">
<select multiple="multiple" name="2">
<option value="1">option1</option>
<option value="2">option2</option>
</select>
</div>
How can i uncheck multiple select box options by class with jquery?
Share Improve this question asked Mar 22, 2012 at 18:11 tonymarschalltonymarschall 3,8823 gold badges33 silver badges52 bronze badges6 Answers
Reset to default 6you can also try this using prop
:
$("div.class_for_all_multi_selects option:selected").prop('selected',false);
check it out : http://jsfiddle/EVrrz/3/
Use removeAttr()
to remove the selected attribute from all options
$('select option:selected').removeAttr("selected");
Since you said #element_to_uncheck_all_options
is a div, you should bind to click
events instead of change
$("#element_to_uncheck_all_options").click(function() {
$('select option:selected').removeAttr("selected");
});
Using removeAttr
:
$("#element_to_uncheck_all_options").click(function() {
$("div.class_for_all_multi_selects option:selected").removeAttr("selected");
});
And since you only want to uncheck all items, use click
(with a button, or whatever) instead of change
.
Here's how I'd probably do it:
$('#selectAll').change(function() {
$('.class_for_all_multi_selects option').prop('selected', this.checked);
});
Here's a jsfiddle to demonstrate. This implements a select all / unselect all, but you could make it just de-select only by setting the this.checked to false instead.
Not a problem.
$("#element_to_uncheck_all_options").click(function() {
$(".class_for_all_multi_selects option").attr("selected", false);
});
Now tested and works :)
Can just change value of the select to an empty value and jQuery will handle the rest, no loop required
$('.class_for_all_multi_selects select').val('');
本文标签: javascriptHow can i uncheck multiple select box options by class with jqueryStack Overflow
版权声明:本文标题:javascript - How can i uncheck multiple select box options by class with jquery? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743680499a2521047.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论