localstorage似乎适用于:
- 谷歌浏览器
- 火狐浏览器
-歌剧
-Opera mini
-可能是Safari

但不是在Internet Explorer上(我正在使用Internet Explorer 11)。我是Windows 7。
我需要可以做相同工作的等同物。这是一个项目,我正在C:驱动器上执行所有操作(安全性并不重要),因此我的协议(protocol)是file:\。我已经做过一些研究,有些人通过添加以下内容进行了修复:

    <!DOCTYPE html>

但这对我没有用。

这是我的代码:
    <!DOCTYPE html>
    <html>
        <head>
            <title>Login</title>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <style type="text/css">
                * {
                    font-family:Cambria;
                    color:blue;
                }
            </style>
        </head>
        <body>
            <script>
                function transfer() {
                    confirm("Would you like to save your password for this site?");
                    var contents = document.getElementById('email_input').value;
                    var contents_2 = document.getElementById("password_input").value;
                    localStorage.setItem('user', contents);
                    localStorage.setItem('password', contents_2);
                    window.location.href = 'page2.html';
                    };

                var button_clicked = function(){
                    email_content = document.getElementById("email_input").value;
                    pass_content = document.getElementById("password_input").value;
                    points = 0;
                    if (email_content.length < 1){
                        document.getElementById("empty_1").innerHTML = ("*please input your email address");
                    } else {
                        document.getElementById("empty_1").innerHTML = ("<br>");
                        points += 1;
                    };
                    if (pass_content.length < 1){
                        document.getElementById("empty_2").innerHTML = ("*please input your password");
                    } else {
                        document.getElementById("empty_2").innerHTML = ("<br>");
                        points += 1;
                    };
                    if (points === 2){
                        transfer();
                    }
                };

            </script>
            <div id="top_bar" style="height:100px;background-color:lightslategray;">
                <marquee scrollamount="20" behavior="scroll"><p style="font-size:30px;color:white;">
                    Welcome, please login to your account to continue</p>
                </marquee>
            </div>
            <div>
                <div style="margin-left:500px;width:300px;height:200px;background-color:lightblue;"></div>
                <div style="margin-left:440px;">
                    <div style="background-color:whitesmoke;width:350px;height:270px;margin-left:30px;border-radius:15px;
                         margin-bottom:30px;">
                            <div style="margin-left:40px;">
                                <h1>Login below</h1>
                                <p id="empty_1" style="color:red;"><br></p>
                                <p>Email address: <input id="email_input" type="text" style="width:150px;"/></p>
                                <p id="empty_2" style="color:red;"><br></p>
                                <p>Password: <input id="password_input" type="password" style="width:180px;"/></p>
                                <br>
                                <button onclick="button_clicked()">Submit</button>
                            </div>
                        </div>
                </div>
                <div style="margin-left:500px;width:300px;height:500px;background-color:lightblue;"></div>
            </div>

        </body>
    </html>

另存为page1.html
第二页是:
    <!DOCTYPE html>
    <html>
        <head>
            <title id='title'>title goes here</title>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <style type='text/css'>
                h1 {
                    color:blue;
                }
            </style>
        </head>
        <body>
            <h1 id='my_title'>Title</h1>
            <h2 id='my_pass'>Title</h2>
            <script>
                var full_name = localStorage.getItem('user');
                list = [];
                for (i=0;i<full_name.length;i++){
                    if (full_name[i]==="@"){
                        break;
                    }
                    else{
                        list.push(full_name[i]);
                    }
                };
                document.getElementById("my_title").innerHTML = ("Name: " + list.join(""));
                var full_pass = localStorage.getItem('password');
                document.getElementById("my_pass").innerHTML = ("Email address: " + full_name);
            </script>
        </body>
    </html>

另存为page2.html

所有答案表示赞赏。

最佳答案

添加doctype声明意味着您的标记将由浏览器以应有的方式(即HTML5)解析。

Internet Explorer在本地存储方面有两个问题。首先,它在8之前的版本中根本无法使用-您无需在帖子中指定正在运行的版本。

重要:您提到您正在C:驱动器上运行:这是否意味着您使用的是file://协议(protocol)而不是http?如果是这样,问题就解决了。使用文件协议(protocol)会导致各种问题,尤其是localStorage在IE中根本无法使用。

如果仍然有问题,可能会发现您需要修改浏览器的安全设置以允许本地存储。

该页面包含一个矩阵,详细介绍了各种浏览器对localStorage的支持:

http://www.html5rocks.com/en/features/storage

请务必查看Mark Pilgrim的出色HTML5资源,其中包括一些用于检测storage事件的IE特定代码:

http://diveintohtml5.info/storage.html

关于javascript - Internet Explorer上的localstorage无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23391353/

10-13 08:39