所以我在我的 PHP 中有一个回显的表单:
echo "<td class='btn'><a href=\"/php/editPs/unlinkWhere.php?product=".$row['item_id']."\" onclick=\"goclicky(this); return false;\" target=\"_blank\"><img src=\"img/unlink.png\" border=\"0\"></a></td>";
这是它调用的 JS 函数:
function goclicky(meh)
{
var x = screen.width/2 - 400/2;
var y = screen.height/2 - 300/2;
window.open(meh.href, 'Unlink','height=300,width=400,left='+x+',top='+y);
}
然后页面 unlinkWhere.php 在屏幕中间加载,里面还有另一种形式:
echo "<form action=\"/php/editPs/unlink.php\" onSubmit=\"return valida(); \" method=\"post\" >";
提交的所有数据都会关闭弹出窗口,这是我的问题,我不知道如何刷新/重新加载上一页:
//if its validated then
if((valLOC!=0 && valTEA==0 && valPERSONFIELD==0)||(valLOC==0 && valLOCDES=='' && valTEA!=0 )){
//hide error div
erro.style.display='none';
//DOES NOT WORK
window.opener.document.location.reload(true);
window.close();
return true;
} else{
erro.style.display='inline';
return false;
}
我认为我的问题是我正在通过 js 生成 href 链接,而父级不起作用......任何想法我该怎么做?