如何访问另一个html页面的<div id =“example”>?

时间:2017-04-24 19:40:38

标签: javascript html

URL是相同的,但路径不同,我想看看如何访问上一个html页面的示例id内容。思考?

1 个答案:

答案 0 :(得分:0)

在JS中,您可以使用本地存储。

HTML:

<div id="example> </div>

JS:

//assign the value of the id
localStorage.setItem('value', example);

//get and assign the value 
var value= localStorage.getItem("value");