当我在IE 7上测试我的应用程序时,我收到错误
jquery-1.11.0.min.js, line 4 character 16126
it says that: SCRIPT1002: Syntax error
for the line: return a.JSON.parse(b+"");
我用google搜索解决方案,有些人告诉我将以下脚本添加到我的应用程序
https://github.com/douglascrockford/JSON-js/blob/master/json2.js
所以我把它添加到我的应用程序中,如下所示:
<script src="/Scripts/json2.js"></script>
<script type="text/javascript" src="/Scripts/jquery-1.11.0.min.js"></script>
但是我仍然遇到了这个问题和我的应用程序而且它无法正常工作。有没有其他方法可以解决这个问题?