admin管理员组文章数量:1345179
I have a select2
select element whose value I am setting through jQuery
$("#select2").val(elment_id).trigger('change');
However, I have already defined an onchange event handler.
$('#select2').on('change', function(e) {
//TODO
});
I would like to just change(set) the value of select2
without triggering a change event. Any idea, how to do it?
I have a select2
select element whose value I am setting through jQuery
$("#select2").val(elment_id).trigger('change');
However, I have already defined an onchange event handler.
$('#select2').on('change', function(e) {
//TODO
});
I would like to just change(set) the value of select2
without triggering a change event. Any idea, how to do it?
-
Why do yo call
trigger('change')
to change the value? Isn't just$("#select2").val(elment_id)
enough? – sassy_rog Commented Apr 29, 2019 at 6:18 - This doesnt change the value on the select2 element. – Kiran Commented Apr 29, 2019 at 6:22
3 Answers
Reset to default 10There is a special event to refresh it:
$("#select2").val(elment_id).trigger('change.select2');
From docs:
It's mon for other ponents to be listening to the change event, or for custom event handlers to be attached that may have side effects. To limit the scope to only notify Select2 of the change, use the .select2 event namespace:
$('#mySelect2').val('US'); // Change the value or make some change to the internal state $('#mySelect2').trigger('change.select2'); // Notify only Select2 of changes
You could do with Jquery
extension create new prototype like this
$.fn.extend({
Val: function(a) {
$(this).val(a).trigger('change');
}
})
$('#select2').Val(1)
It depends when you want to change the value in select element. It depends from other element? If you want to fire event on select element change, but don't want to trigger already defined 'onchange' action, you can give your select next unique class, and build next 'onchange' event for that class. But, as i said previously, i don't know what you want to achieve, and it's hard to say which solution will be the best
本文标签: javascriptHow to change the value of select2 without trigger eventStack Overflow
版权声明:本文标题:javascript - How to change the value of select2 without trigger event? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743751089a2532660.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论