javascript – 如何获取select2的值:unselect

前端之家收集整理的这篇文章主要介绍了javascript – 如何获取select2的值:unselect前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用select2:unselect获取 Select2中未选择的选项的值
$('#mySelect').on("select2:unselect",function(e){

    var unselected_value = $('#mySelect').val(); // using this shows 'null'
    // or using below expression also shows 'null'
    var unselected_value = $('#mySelect :selected').val();

    alert(unselected_value);
}).trigger('change');

在上面的代码警示中显示’null’

我需要使用select2:unselect,因为’change’事件会感觉到:select和:取消选中它们.

解决方法

实际上,数据值在事件对象内.如果您正在处理select2多个值,这将非常有用.
function(e){
    console.log(e.params.data)
}
原文链接:https://www.f2er.com/js/153980.html

猜你在找的JavaScript相关文章