我的页面上有一个 iframe,其中有一个链接可以打开 xyz.com 的窗口。唯一的事情是它会自动在 iframe 之外打开这个窗口。我已将此脚本嵌入到 iframe 页面中:
<script>
function open_win()
{
window.open("http://www.w3schools.com","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
}
</script>
</head>
窗口显示,但是当我只想让它显示在内框内时,它显示在所有内容之外。