我正在使用大量 ajax 的 grails 中开发一个应用程序。在一部分中,我使用了以下代码:
<iframe id="hidden-upload-frame" style="border:none;height:25px;width:100%;" onload="${remoteFunction(action: 'list', controller: 'file', update: [success: 'fileDomain', failure: 'fileDomain'])}">
</iframe>
<div id="fileDomain">
</div>
上面的代码在google chrome浏览器中完美运行并更新fileDomain div。但在IE和firefox中它会打开一个新窗口并显示内容。它没有更新fileDomain div。如何在IE和mozilla上进行这项工作。我需要吗在 gsp 页面中添加 doctype 标签?