我在做什么:当模态弹出窗口打开时,动态地向选择框添加选项。等待on change
触发器响应。
观察:首先会弹出所有选项的警告框。 下面是代码。
$("#query_product").on("change", function(e){
alert(1)
});
$("#add_condition_modal").on( "shown.bs.modal", function() {
options = ['<option>one</option>','<option>two</option>','<option>three</option>']
$('#query_product').find('option').remove()
$('#query_product').append(options);
});
<select id="query_product" name="query_product" required></select>
另一个观察:当我使用相同的选项预填充html选择框然后选择第一个选项或任何选项时,我会看到警告弹出窗口。 现在我很困惑。
我尝试使用事件委托来动态添加元素。
$(document).on("change","#query_product", function() {
似乎没什么用。任何帮助将不胜感激。 TIA
答案 0 :(得分:3)
试试这个:
$("#query_product").on("change", function(e){
alert(1)
});
$("#add_condition_modal").on( "shown.bs.modal", function() {
options = ['<option value="one">one</option>','<option value="two">two</option>','<option value="three">three</option>']
$('#query_product').find('option').remove();
$('#query_product').append(options);
$('#query_product').val("");
});
<select id="query_product" name="query_product" required></select>
答案 1 :(得分:1)
这是你做错了。
['<option>one</option>','<option>two</option>','<option>three</option>']
我建议使用字符串。
$("#query_product").on("change", function(e){
alert(1)
});
$("#add_condition_modal").on( "shown.bs.modal", function() {
options ='<option>one</option><option>two</option><option>three</option>';
$('#query_product').html(options);
});
<select id="query_product" name="query_product" required></select>
当你使用remove()
jQuery函数时,它也会删除select2。
所以重新初始化会为你解决。
注意:如果您想使用选项数组,请按照这样做。
var options = ['first_option','second_option','third_option'];
var optionString = '';
for(var i = 0; i< options.length; i++){
optionString += '<option>'+options[i]+'</option>';
}
then $('#selector').html(optionString);
这是一个可能有帮助的小提琴 https://jsfiddle.net/imrealashu/61tvh76t/3/