我在存储会话时遇到问题...
我正在使用的代码:
//save to session
$.session("compareLeftContent","value");
alert($.session("compareLeftContent"));
Run Code Online (Sandbox Code Playgroud)
请问有什么想法?
在jsfiddle示例中,您提供的是没有附加会话插件.$.session不包含在jQuery中.您需要使用此插件才能拥有此功能:Jquery Session Plugin
然后使用$.session.set和$.session.get方法来存储和读取会话密钥.
例:
$.session.set("compareLeftContent","value");
alert($.session.get("compareLeftContent"));
Run Code Online (Sandbox Code Playgroud)
您正在使用session.js吗?
您需要使用设置会话$.session.set:
$.session.set("compareLeftContent", "value");
Run Code Online (Sandbox Code Playgroud)
要获取会话值,请使用$.session.get:
alert($.session.get("compareLeftContent"));
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
25706 次 |
| 最近记录: |