【发布时间】:2013-01-31 05:54:04
【问题描述】:
我在存储会话时遇到问题...
我正在使用的代码:
//save to session
$.session("compareLeftContent","value");
alert($.session("compareLeftContent"));
http://jsfiddle.net/dWsKJ/ 一起玩。
请问有什么想法吗?
【问题讨论】:
我在存储会话时遇到问题...
我正在使用的代码:
//save to session
$.session("compareLeftContent","value");
alert($.session("compareLeftContent"));
http://jsfiddle.net/dWsKJ/ 一起玩。
请问有什么想法吗?
【问题讨论】:
在您提供的 jsfiddle 示例中,没有附加会话插件。 $.session 不包含在 jQuery 中。您需要使用此插件才能拥有此功能:Jquery Session Plugin
然后使用$.session.set 和$.session.get 方法来存储和读取会话密钥。
示例:
$.session.set("compareLeftContent","value");
alert($.session.get("compareLeftContent"));
【讨论】:
你在使用 session.js 吗?
您需要使用$.session.set设置会话:
$.session.set("compareLeftContent", "value");
要检索会话值,请使用$.session.get:
alert($.session.get("compareLeftContent"));
【讨论】: