Jquery 会话生命周期
我正在会话中存储选定的链接 ID。我想在页面打开后阅读此会话以突出显示该链接。但会话被清除。
代码:
$("div.menu_body a").click(function() {
$.session("ActiveLink", "#A3");
alert($.session("ActiveLink"));---------> Has id
});
alert($.session("ActiveLink"));-----------> Undefiened
问题: 我在该活动之外没有获得此会话的价值。
Geetha
I am stroring the selected link id in the session. I want to read this session after page gets opened to hi-light that link. But the session gets cleared.
Code:
$("div.menu_body a").click(function() {
$.session("ActiveLink", "#A3");
alert($.session("ActiveLink"));---------> Has id
});
alert($.session("ActiveLink"));-----------> Undefiened
Problem:
i am not getting this session value outside that event.
Geetha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在另一个窗口或选项卡中打开页面时,变量会丢失。 - 无法存储具有函数的对象 - Window.name 丢失 - 只能存储字符串
Vars are lost in the page is open in another window or tab. - Objects with functions can't be stored - Window.name is lost - Only Strings can be stored