标签: jquery jquery-select2
我想在select2下拉菜单中获取所选值的关联ID。这可能吗?
$mySelect2.on("change",function(){ var textValue = $(this).val(); //works console.log($(this).select2('id'));// ???? });
答案 0 :(得分:2)
var theID = $(this).select2('data').id;
http://jsfiddle.net/platypusman/xDUUg/