Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
index.htmlから他のhtmlファイルに値を渡そうとしています。他のページのindex.htmlで作成されたその値を使用する方法は?
page1.html:
localStorage.setItem("myValue", myValue);
page2.htmlで
var myValue = localStorage.getItem("myValue");