admin管理员组

文章数量:1343358

I'm working on a client issue where Modernizr unexpectedly does not detect the support for the localStorage object in Internet Explorer 9. My page correctly uses the HTML 5 doctype (<!DOCTYPE html>) and the developer tools report the page has a Browser Mode of IE9 and a Document Mode of IE9 standards so I would expect this to work.

I've debugged into the following try/catch block in Modernizr and discovered a JavaScript error is thrown as soon as the localStorage object is accessed.

tests['localstorage'] = function() {
    try {
        localStorage.setItem(mod, mod);
        localStorage.removeItem(mod);
        return true;
    } catch(e) {
        return false;
    }
};

On some machines the message of the JavaScript error is The system cannot find the file specified.. On others it is just Invalid argument. and Internet Explorer blocks for exactly 5 minutes before it throws the error.

What is causing accessing the localStorage object to throw an error here on Internet Explorer?

I'm working on a client issue where Modernizr unexpectedly does not detect the support for the localStorage object in Internet Explorer 9. My page correctly uses the HTML 5 doctype (<!DOCTYPE html>) and the developer tools report the page has a Browser Mode of IE9 and a Document Mode of IE9 standards so I would expect this to work.

I've debugged into the following try/catch block in Modernizr and discovered a JavaScript error is thrown as soon as the localStorage object is accessed.

tests['localstorage'] = function() {
    try {
        localStorage.setItem(mod, mod);
        localStorage.removeItem(mod);
        return true;
    } catch(e) {
        return false;
    }
};

On some machines the message of the JavaScript error is The system cannot find the file specified.. On others it is just Invalid argument. and Internet Explorer blocks for exactly 5 minutes before it throws the error.

What is causing accessing the localStorage object to throw an error here on Internet Explorer?

Share Improve this question asked Nov 15, 2012 at 7:04 Simon LieschkeSimon Lieschke 13.4k6 gold badges47 silver badges60 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

I've discovered if the lowest level subdomain matches one of the reserved device names as documented at Restrictions on the File Mask and File Name Properties on Internet Explorer then accessing the localStorage object will throw an error.

This problem is likely happening because internally Internet Explorer is attempting to access the file system using a reserved device name when accessing the localStorage object in order to satisfy the Storage object initialization steps.

It's certainly very much an edge case but if your page is es from a server whose lowest level subdomain is exactly any of con, prn, aux, clock$, nul, 1, 2, 3, 4, 5, 6, 7, 8, 9, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8, or lpt9 (e.g. http://prn.example.) then this could well the reason why you are seeing this problem.

Choosing a lower level subdomain that wasn't a reserved device name in this situation solved the problem.

We hit a similar issue because we ran CCleaner on the machine.

To solve:

Internet Options -> Browsing History -> Delete:

Make sure to check all options except the very first one (Preserve Favorite website data).

We were able to fix, then reproduce this issue by using CCleaner again, then fix again.

Go to this site for more information: http://grekai.wordpress./2013/02/24/localstorage-the-system-cannot-find-the-path-specified/

本文标签: javascriptWhy does accessing the localStorage object in Internet Explorer throw an errorStack Overflow