JavaScript getElementsByTagName不起作用

时间:2017-10-12 14:32:52

标签: javascript jquery html-rendering

当我使用代码window.location加载网页时。我想在段落中找到文本。当我使用下面的代码我没有得到答案。使用window.location时如何获取网页内容。页面加载成功。但内容不合适。

$(function(){
    window.location="http://xxxxxxxxx/";
    var x = document.getElementsByTagName("p");
        console.log(x[0]);


    }

输出显示undefined。我没有得到正确的答案。请帮帮我。

1 个答案:

答案 0 :(得分:1)

使用window.location="http://xxxxxxxxx/";时,您将导航到新页面。在此页面中,您没有自己的javascript,因此您不会尝试访问它。

您无法在下一页的上一页执行某些javascript。