基本上我试图从我的页面中删除一些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:访问被拒绝。
答案 0 :(得分:1)