标签: android cordova
我正在尝试将值从index.html传递到其他html文件。如何使用在其他页面的index.html中创建的值?
答案 0 :(得分:4)
在page1.html中:
localStorage.setItem("myValue", myValue);
在page2.html
var myValue = localStorage.getItem("myValue");