现有这样一个网页
<iframe name="frm" style="display:none"></iframe>
<form id="form1" target="frm" onsubmit="return addTzgg();"
action="<%=request.getContextPath() %>/uploadFile" method="post" enctype="multipart/form-data">
表单内有几个文本框
</form
当表单提交后会有返回值到iframe中并修改了iframe的内容
求如何在当iframe修改后调用父页面的close方法。
不使用nodejs,谢谢
在父页面里定义一个方法,例如function aaa(){}在子页面里通window.parent.aaa()调用父页面中的方法。
子页面不能写代码,要给出子页面中按钮具有什么规则。例如所有按钮,那么可以
$("#iframe的id input[type='button'").click(function(){//your code here}),其他规则,可以根据情况改变上面个的jquery选择器。
window.parent