我有一个远程页面(mypage.html),该页面中有一个选择器。我想将此页面作为对话框主体加载到我的 bootstrapdialog 中,但我想在加载之前将选项动态添加到选择器中。
远程页面(mypage.html)代码:
<form>
<select id="zoneSelectPicker" class="form-control"
name="availabilityZone" style="height: 3.0em;">
</select>
</form>
然后我想使用jquery添加
$.get('mypage.html', function(data) {
$(data).find('#zoneSelectPicker')
.append(
'<option value="us-east-1a">us-east-1a</option');
BootstrapDialog.show({
message: $('<div></div>').append($(data))
});
});
但是选项仍然是空的。