当前位置: 代码迷 >> 综合 >> phoneGap 静态页面中简单的数据传递
  详细解决方案

phoneGap 静态页面中简单的数据传递

热度:57   发布时间:2023-12-11 14:53:36.0

主要采用方式:

window.localStorage.setItem("xxxx","");

window.localStorage.getItem("xxxx");

使用时set,get,remove就可以了。

API方法:

localStorage.getItem(key):获取指定key本地存储的值

localStorage.setItem(key,value):将value存储到key字段

localStorage.removeItem(key):删除指定key本地存储的值