我正在尝试打开一个新窗口并填充数据,准备好在剪贴板中复制,打印或保存到硬盘。我是通过 Greasemonkey用户脚本来完成的。
脚本的简化版本:
window.addEventListener("load", function() {
/*EXPORT DATA*/
//Create a button
var button = document.createElement("input");
//call the actual export function
button.onclick = function() {window.exportujRozvrh();};
//I also tried this:
//button.onclick = (function() {window.exportujRozvrh();}).bind(window);
button.value = "Print data in new tab";
button.type = "button";
//Append button to a node
getElementByXpath(tisk_path).appendChild(button);
});
window.exportujRozvrh = function() {
//create a new tab (or window if tab not supported)
var okno = window.open(); //No url should be fine for same origin policy, shouldn't it?
//check if popup exists
if(okno==null)
alert("Popup blocked.");
//Write the data
okno.document.open();
okno.document.write("data");
okno.document.close();
}
如果从button
运行,则此函数会抛出以下错误:
SecurityError: The operation is insecure.
但是,如果该函数是从调试控制台或从URL栏(通过插入 1)获得的,则脚本可以正常工作。javascript: window.exportujRozvrh();void(0)
)
所以我猜这个函数是在事情中启动的。这就是为什么我试图使用.bind(window)
。
1)调用此抛出“窗口未定义”错误。我已经习惯了窗口总是被定义的事实,所以我放弃了。