兄弟姐妹们哪位知道,javascript提交表单后刷新上级界面?
function saveOrupdateFunc(){alert(1);
var name=document.getElementById("name");
if(name.value==''){
alert('功能名称不能为空');
return false;
}
var funcLink=document.getElementById("funcLink");
if(funcLink.value==''){
alert('功能链接不能为空');
return false;
}
document.funcForm.submit();
//window.opener.location.reload();
//window.close();
} 屏蔽掉//window.opener.location.reload();//window.close();这两行后提交就正常把这两行释放开上级页面是刷新了但是表单提交就提交不了求解?????