문제

this code works in Firefox and Safari, but in Chrome Version 33.0.1750.149 the localStorage is always empty after restart. (In DevTools as well as accessed through console)

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript">
        function saveStuff() {
            localStorage.setItem('localKey', 'localValue');
        }
    </script>
</head>
<body onload="localStorage">
<button type="button" onclick="saveStuff()">Save</button>
</body>
</html>

What am I doing wrong?

도움이 되었습니까?

해결책

The problem was solved by disabling the option "Block third party cookies".

다른 팁

my same problem solved by disabling the option "Clear cookies and site data when you quit Chrome" in security settings of chrome

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top