我想在相同的窗口和相同的选项卡中打开一个链接,其中包含有链接的页面。

当我试图打开一个链接使用窗口。打开,然后在新选项卡中打开——而不是在同一窗口的同一选项卡中。


当前回答

你可以这样做

window.close();
window.open("index.html");

它在我的网站上很成功。

其他回答

你可以让它跳转到相同的页面而不指定url:

window.open('?','_self');

为了确保链接在同一个选项卡中打开,您应该使用window.location.replace()

请看下面的例子:

window.location.replace("http://www.w3schools.com");

来源:http://www.w3schools.com/jsref/met_loc_replace.asp

你一定要用window.open吗?如果使用window.location="http://example.com"呢?

最突出的javascript特性之一是动态地触发onclick处理程序。我发现以下机制比使用定位更可靠。Href = "或location.reload()或window.open:

// this function can fire onclick handler for any DOM-Element
function fireClickEvent(element) {
    var evt = new window.MouseEvent('click', {
        view: window,
        bubbles: true,
        cancelable: true
    });

    element.dispatchEvent(evt);
}

// this function will setup a virtual anchor element
// and fire click handler to open new URL in the same room
// it works better than location.href=something or location.reload()
function openNewURLInTheSameWindow(targetURL) {
    var a = document.createElement('a');
    a.href = targetURL;
    fireClickEvent(a);
}

上面的代码也有助于打开新的标签/窗口,绕过所有弹出窗口拦截器!!如。

function openNewTabOrNewWindow(targetURL) {
    var a = document.createElement('a');
    a.href = targetURL;

    a.target = '_blank'; // now it will open new tab/window and bypass any popup blocker!

    fireClickEvent(a);
}

像点击链接一样打开另一个url

window.location.href = "http://example.com";