JavaScript Popup Chrome #39;save as#39;-deactivated? Why?(JavaScript Popup Chrome“另存为已停用?为什么?)
问题描述
我正在用 Javascript 打开一个弹出窗口:
I am opening an popup in Javascript with:
function popup(title,w,h,site) {
x = screen.availWidth/2-w/2;
y = screen.availHeight/2-h/2;
var date = new Date()
var ticks = date.getTime();
var popupWindow = window.open(
title,"popup"+ticks,'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,titlebar=yes,hotkeys=yes,status=yes,dependent=no,location=1');
popupWindow.document.write(site);
return popupWindow;
}
当我右键单击新窗口时,另存为"对话框在 chrome 中被停用.
When I right click the new window, the "save as"-dialog is deactivated in chrome.
如何启用它?我做错了什么?
How can I enable it? What am I doing wrong?
推荐答案
属性 status 应该是 1 而不是 yes.这应该是阻止 Chrome 将弹出窗口视为新窗口的原因.
the attribute status should be 1 not yes. This should be what is preventing Chrome from treating the popup as a new window.
另外,open() 按以下顺序接受参数:
Also, open() takes parameters in this order:
window.open(URL,name,specs,replace)
那就试试吧:
window.open("about:blank", title, 'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+'resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,titlebar=yes,hotkeys=yes,status=yes,dependent=no,location=1')
这篇关于JavaScript Popup Chrome“另存为"已停用?为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JavaScript Popup Chrome“另存为"已停用?为什么?
基础教程推荐
- fetch 是否支持原生多文件上传? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
