码迷,mamicode.com
首页 > 其他好文 > 详细

使用sessionStorage得一个坑

时间:2016-12-26 21:04:37      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:技术   str   get   json对象   .com   string   技术分享   字符串转换   http   

技术分享

1.首先sessionStorage.setItem("isMybill" false)  

2.使用的时候 sessionStorage.getItem(‘isMybill‘)  //打印输出是 字符串 : "false"

3.所以在使用之前把 JSON.perse( sessionStorage.getItem(‘isMybill‘)) 转换成 json对象 :false

 

JSON.parse(jsonstr); //可以将json字符串转换成json对象 
JSON.stringify(jsonobj); //可以将json对象转换成json对符串 

 

使用sessionStorage得一个坑

标签:技术   str   get   json对象   .com   string   技术分享   字符串转换   http   

原文地址:http://www.cnblogs.com/lihanying/p/6223432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!