我有下面的 iframe:
<iframe id="frameID" name="myframe"> </iframe>
在同一页面上,我有一个表格:
<form id="formID" action=".." target="myframe">
...
</form>
表单由 JQuery 提交:
$('#formID').submit();
$('#frameID').one('load', function (){
alert(...);
}
问题是警报没有出现在Firefox中。我在这方面缺少什么?上面的代码是否也适用于 Internet Explorer?
谢谢