如何从select2下拉列表中获取id

时间:2014-06-27 08:59:18

标签: jquery jquery-select2

我想在select2下拉菜单中获取所选值的关联ID。这可能吗?

    $mySelect2.on("change",function(){
        var textValue = $(this).val(); //works
        console.log($(this).select2('id'));// ????
    });

1 个答案:

答案 0 :(得分:2)

  var theID = $(this).select2('data').id;

http://jsfiddle.net/platypusman/xDUUg/