而在 iframe 中,用户提交一个弹出窗口表单。
弹出窗口关闭,父窗口重新加载,将用户重定向回主页。
这是 iframe 代码:
<iframe src="iframe.php"></iframe>
这是 iframe 内的弹出窗口:
function popupwnd(url, toolbar, menubar, locationbar, resize, scrollbars, statusbar, left, top, width, height)
{
if (left == -1)
{
left = (screen.width/2)-(width/2);
}
if (top == -1)
{
top = (screen.height/2)-(height/2);
}
var popupwindow = this.open(url, '', 'toolbar=' + toolbar + ',menubar=' + menubar + ',location=' + locationbar + ',scrollbars=' + scrollbars + ',resizable=' + resize + ',status=' + statusbar + ',left=' + left + ',top=' + top + ',width=' + width + ',height=' + height);
}
<a href="javascript:popupwnd()" target="_parent" title="Login into the Site">Login To Buy</a>
这是关闭弹出窗口并将用户重定向到主页的javascript:
<script>
window.opener.location = /;
window.close();
</script>';
这个过程在 chrome 或 safari 中不起作用,但在 IE 和 firefox 中起作用。