在開發基於微信的Web頁面時,發現有些機型不能儲存資訊到localStorage中,或是頁面一旦關閉,儲存的資訊也失效了。用cookie來取代localStorage,儲存一些簡單的資料。本文主要介紹使用cookie解決微信不能儲存localStorage的問題, 這裡提供了程式碼範例,有需要的小夥伴可以參考下,希望能幫助大家。
設定cookie:
function setCookie(c_name,value,expiredays) { var exdate=new Date() exdate.setDate(exdate.getDate()+expiredays) document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : ";expires="+exdate.toGMTString()) } //取回cookie function getCookie(c_name) { if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "=") if (c_start!=-1) { c_start=c_start + c_name.length+1 c_end=document.cookie.indexOf(";",c_start) if (c_end==-1) c_end=document.cookie.length return unescape(document.cookie.substring(c_start,c_end)) } } return "" }
範例:
設定cookie,有效期限為365天
setCookie('username','123',365);
取回,若cookie失效,將返回空白
getCookie('username');
經過測試,完全相容,沒有出現問題.
相關推薦:
php中函數cookies、sessionStorage和localStorage的不同之處
#以上是詳解cookie解決微信不能儲存localStorage的問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!