我正在创建一个Greasemonkey脚本,并且想要打开一个新选项卡,该选项卡不会显示URL,但会显示一些HTML作为脚本的一部分。所以基本上我想做这样的事情(这显然不起作用):
window.open('<html><head></head><body></body></html>');
or
GM_openInTab('<html><head></head><body></body></html>');
欢迎任何提示!
答案 0 :(得分:52)
你可以这样做:
var newWindow = window.open();
然后再做
newWindow.document.write("ohai");
答案 1 :(得分:9)
如果另一个答案为您提供Error: Permission denied to access property "document"
,请参阅this question,了解如何处理同源政策问题,或this one。
或者,快速和脏,使用数据URI:
var html = '<html><head></head><body>ohai</body></html>';
var uri = "data:text/html," + encodeURIComponent(html);
var newWindow = window.open(uri);
答案 2 :(得分:-1)
假设您在本地存储了一个.html
文件。您可以执行以下操作:
var newWindow = window.open();
newWindow.document.location.href = "/path/to/html/file";