如何引用和访问使用window.location

时间:2016-09-24 01:53:04

标签: javascript html5 javascript-events

在当前的html页面中,我有一个onclick事件附加到按钮,该事件将重定向到新页面。在新页面上,我需要使用document.getElementById ...在新页面上进行更改。正如预期的重定向后,document.getElementById ...返回null可能是因为它仍然在考虑前一页没有指定id的元素。 我用:

window.location.assign(url_of_new_page);
document.getElementById("id1").innerHTML="SOMETHING";

这里的错误说:

  

无法设置属性&inner;内部HTML' null。

任何处理此事的提示都将受到赞赏!

0 个答案:

没有答案