复制代码 代码如下: 本地缓存 <BR> var strKey = "strKey"; <BR> var storage = window.localStorage; <br><br> function onStart(){ <BR> if(storage.getItem(strKey)!=null){ <BR> alert(storage.getItem(strKey)+'localStorage'); <BR> }else if(Cookie.read(strKey)!=null){ <BR> alert(Cookie.read(strKey)+'cookie'); <BR> } <BR> } <BR> function bendihuancun(){ <BR> var strValue = document.getElementById("username").value; <BR> if (storage) { <BR> storage.setItem(strKey, strValue); <BR> } else { <BR> Cookie.write(strKey, strValue); <BR> } <BR> } <BR>