提交form表单后关闭Iframe弹窗并刷新父级页面


要iframe弹窗的form标签内设置 target="_parent" 

eg:

 

 target="_parent"   >

在checkAll()中加入方法

window.opener.parent.location.reload();

eg:

function checkAll(){
var fla = 0;
$("input[name='powerIds']").each(function(){
if($(this).is(":checked")){
fla=1;
};
});
if(fla==0){
return false;
}
window.opener.parent.location.reload();
return true;

你可能感兴趣的:(提交form表单后关闭Iframe弹窗并刷新父级页面)