javascript – 使用window.open的相对网址

前端之家收集整理的这篇文章主要介绍了javascript – 使用window.open的相对网址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在JS代码下面使用通过填充动态生成代码来打开新窗口.

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,以使我的超链接&图像源参考工作.

附:在js代码中指出的页面没有物理存在.

最佳答案
如何将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");

参见Window.location

原文链接:https://www.f2er.com/html/426478.html

猜你在找的HTML相关文章