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“另存为"已停用?为什么?


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01