我在我的jsp中使用jquery jstorage

进口声明

<script type="text/javascript" src='<s:url value="/script/jstorage.min.js"/>'></script>

这是我在jstorage中设置值
var customerId = $ .jStorage.get(“customerId”,true); //行
i can see below errors in my console

SCRIPT5022: jQuery, MooTools or Prototype needs to be loaded before jStorage!
     jstorage.min.js?ver=4.5.8, line 2 character 315
SCRIPT5007: Unable to get value of the property 'get': object is null or undefined

以某种方式$ .jStorage在IE的第1行为null,但不是firefox / chrome(因此适用于firefox / chrome)。

最佳答案

人们得到了修复。需要导入jquery.json-2.3.min.js使其在IE上工作

10-02 20:43