我将一些通过 ajax 读取的内容放在div
. 内容具有某些脚本标签,用于绑定 ajax 内容中包含的某些元素上的某些事件。
阿贾克斯内容:
<div>
<div>
<select id='mySelectBox'>
<option value="1">ONE</option>
<option value="2" selected="selected">TWO</option>
</select>
</div>
<script type="text/javascript">
$(document).on("change",'#mySelectBox',function(){
alert($('#mySelectBox').val());
});
$('#mySelectBox).change(); //problem here....
</script>
</div>
当我更改'#mySelectBox'
. 但是这里在$('#mySelectBox).change();
绑定后立即触发更改事件的语句中没有被调用。
可能是什么问题。?