当前位置:  开发笔记 > 编程语言 > 正文

如何获得select2的值:取消选择

如何解决《如何获得select2的值:取消选择》经验,为你挑选了3个好方法。

我怎样才能得到未选择的选项的值在选择二用select2:unselect

$('#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并且:unselect两者兼而有之.



1> Chun..:

实际上,数据值在事件Object内.如果您正在处理select2多个值,那将非常有用.

function(e){
    console.log(e.params.data)
}


具体来说,“ e.params.data.id”是选定/未选定项目的“值”,而“ e.params.data.text”则是“ innerText”标签。

2> gfrobenius..:

这是一个较老的问题,但也许这个答案会对某人有所帮助.我正在使用带有多个值/标签的Select2 v4.0.3,并且只需删除特定ID的ID.我真的不想使用unselecting其他答案中提到的事件.如果unselect没有args对象,那么你可以获得你想要删除的那个ID ...

jQuery('.mySelect2').on("select2:unselecting", function(e){
    return true; // I don't use this unselecting event but here is how you could use it to get the ID of the one you are trying to remove.
    console.log(e);
    console.log(e.params);
    console.log(e.params.args.data);
    console.log(e.params.args.data.id);
    //console.log(e.params.args.data.tag); data.tag is specific to my code.
});

jQuery('.mySelect2').on('select2:unselect', function (e) {
    console.log(e);
    console.log(e.params);
    console.log(e.params.data);
    console.log(e.params.data.id);
    //console.log(e.params.data.tag); data.tag is specific to my code.

    /*
    Now you can do an ajax call or whatever you want for the specific
    value/tag that you are trying to remove which is: e.params.data.id.
    */



3> Vipin Kr. Si..:

最后,我得到了解决方案,那就是:unselected选项的值仅在未选择之前可用。没有select2:unselect,而在select2:unselecting 现在的代码将是:

$('#mySelect').on("select2:unselecting", function(e){
         var unselected_value = $('#mySelect').val();
         alert(unselected_value);
    }).trigger('change');


这将适用于单个选择。要从多个选择中删除项目,请参阅上面的gfrobenius的答案。
推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有