having a problem using localstorage in javascript.
I have two javascript files and one multi-page html file. I'm setting the value of a variable to store in local storage in the home.js class and I then want to get the value of the same variable in my editCase.js class. Is this possible? The goal here is to use the variable several places in the html file.
home.js:
var _NSCaseId;
var nsId;
$("#listOfCases li").click(function(){
nsId = $(this).attr('id');
LocalStorage.save(_NSCaseId, nsId);
alert(nsId);
});
As you can see, the value is the id of a listview item. This works fine and the alert shows the correct value every time.
I then want to use the same variable in the editCase.js file:
var id = LocalStorage.get(_NSCaseId);
alert(id);
But I get an error in logcat saying _NSCaseId is undefined in editCase.js
Any suggestions?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…