function OpenWindow(obj) {
var w = window.open();
var stored = $(obj).parent().find("div").html();
w.document.title = "New Window";
w.document.URL = "hello.com/dummypage.html"; //how to assign the url to the newly opened window
$(w.document.body).html(stored);
return false;
}
本文档中使用的相对URL表示对于img src,在本文档中不起作用.
编辑:
我使用javascript动态填充内容,只需要在浏览器窗口中有一个有效的URL,以使我的超链接&图像源参考工作.
最佳答案
如何将URL分配给新打开的窗口
你需要传递和URL到window.open()
window.open('http://www.google.com');//will open www.google.com in new window.
window.open('/relative_url'); //opens relatively(relative to current URL) specified URL
要么,
function OpenWindow(obj) {
var w = window.open();
w.location = "hello.com/dummypage.html"; //how to assign the url to the newly opened window
}
要么,
你甚至可以说,
w.location.assign("http://www.mozilla.org");
原文链接:https://www.f2er.com/html/426478.html
猜你在找的HTML相关文章