我正在尝试创建一个显示浏览器工具栏并允许像普通浏览器窗口一样编辑 URL 的弹出窗口。这是用于自定义 CMS 后端的链接,以使用户能够查看移动格式的网站。我知道 window.open() 的默认行为是工具栏 = 是,位置 = 是和菜单栏 = 是,但是当使用 Chrome 时,我得到一个弹出窗口有一个无法编辑的 URL 字段并且没有无论我使用什么设置,后退、前进、重新加载按钮。在 Firefox 和 Safari 中运行良好。
这是我正在使用的代码:
<script>
function popupwindow(url, title, w, h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
return window.open(url, title, 'toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
</script>
<a href="/?format=mobile" onclick="popupwindow('/?format=mobile', 'Mobile App', 336, 480); return false;">
Launch App
</a>