首先,我所居住的街道中的用户类型
<label>Straat</label>
<input type="text" id="straat" class="form-control" required pattern="[a-zA-Z][a-zA-Z0-9-_\.]{1,20}">
我将它存储在var:
中$('#opslaan').click(function(){
var street = document.getElementById('straat');
我试一试并抓住:
try{
localStorage.setItem("straat", street.value);
}
catch(f){
if(f == QUOTA_EXCEEDED_ERR){
console.log("Error: Local Storage limit exceeds.");
}else{
console.log("Error: Saving to local storage.");
}
}
当我转到本地存储时,我可以看到:straat = somestreetname
但是当我想稍后加载localstorage时(在另一个页面上)它不起作用
$(window).load(function(){
eindstraat.value = localStorage.getItem("straat");
});