首先,我是 jQuery 的新手。
当它通过弹出窗口引导程序调用时,我无法选择一个“选择”元素。我已经尝试过我遇到的任何可能的解决方案:在 div 标签中选择元素等。但没有任何效果。
这是我的小提琴http://jsfiddle.net/zMrmL/。
var test2 = $('#optionDropdown2');
var test = $('#popoverContent select.optionDropdown'); //I have no idea here
$(test2).select2();
$(test).select2();
$(test).change(function() {
var theID = $(test).select2('data').id;
var theSelection = $(test).select2('data').text;
$('#selectedID').text(theID);
$('#selectedText').text(theSelection);
});
$(test2).change(function() {
var theID2 = $(test2).select2('data').id;
var theSelection2 = $(test2).select2('data').text;
$('#selectedID2').text(theID2);
$('#selectedText2').text(theSelection2);
});