LocalStorage无法使用IE 11 Win 8.1

时间:2014-07-03 19:20:25

标签: javascript html5 internet-explorer local-storage

基本上我试图从我的页面中删除一些localstorage密钥。 我使用的脚本是:

    box.emptyStorageFilter = (function() {
        $('header nav li a').off().on('click', function(e) {
            localStorage.removeItem('list_customers');
            localStorage.removeItem('list_orders');
            localStorage.removeItem('list_products');
            localStorage.removeItem('filter_category');
        });
    }());

我不知道出了什么问题,因为它在每个浏览器上工作(包括IE 8,9,10),但是IE 11!

在控制台我收到此错误:

  

SCRIPT5:访问被拒绝。

1 个答案:

答案 0 :(得分:1)

本地存储无法在本地模式下运行它是安全的东西(但可以制作2)http://social.technet.microsoft.com/Forums/ie/en-US/61177c2b-6a38-4207-9cbe-ccd6c86b1d42/html5-local-storage-broken-in-ie11-win-81-x64-error-function-expected#f345c94d-f404-4b4b-b808-d8849646be27如果您发现任何内容,请发布更新...