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“另存为"已停用?为什么?
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01