URL是相同的,但路径不同,我想看看如何访问上一个html页面的示例id内容。思考?
答案 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");