重定向不起作用

时间:2017-04-26 10:40:01

标签: javascript html

我有test.html页面,当它加载时,我将它重定向到另一个页面:

window.location.href = 'https://some.page'

但是当我试图获取新页面的html源代码时:

console.log("innerHTML " + window.document.documentElement.innerHTML);

我仍然获得旧的test.html页面的html源代码。如何访问新加载的页面http://some.page

2 个答案:

答案 0 :(得分:1)

你应该尝试:

document.addEventListener("DOMContentLoaded", function(event){ 
    window.open("https://some.page")
}); 

此函数首先加载文档,然后执行内部的内容。

答案 1 :(得分:-1)

试试这个:

window.onload = function() {
 console.log("innerHTML : " + window.document.documentElement.innerHTML); 
}

window.location.href = 'https://some.page';