在加载页面时,我需要检查Javascript中是否存在会话变量。我尝试了以下代码。但它给出了一个错误,说会话未定义。
Json=// i have hardcoded value here
Session("hai") = "";
Session.set("hai",json);
if (( typeof session.get("hai") == 'undefined' && ((session.get("hai") == null)||(session.get("hai") == "") ) ){
}
答案 0 :(得分:1)
如果要在页面请求之间存储内容,可以使用本地存储或会话存储。
localStorage.hai = json; // persistent across multiple sessions
sessionStorage.hai = json; // persistent in current session
但这与服务器端会话无关。目前还不清楚您的要求是什么,所以不确定这是否适合您。
以下是有关会话存储的更多信息的链接:http://www.nczonline.net/blog/2009/07/21/introduction-to-sessionstorage/