-1

我有一个需要像 cookie 一样进行验证的网站。但我想使用本地存储,因为它是一个移动概念。我知道该项目是通过测试设置的,但是当它不正确时,我无法让页面重定向。

<script language="javascript">
 if (localStorage.getItem('itemVerified') = 'True') {
window.location = "success.html";
}
else {
alert("You are not able to enter this site!");
window.location = "error.html";
}
</script>
4

1 回答 1

0

可能有两个错误,第一个是您的比较字符串缺少 = 符号:

不正确:if (localStorage.getItem('itemVerified') = 'True') {

正确的:if (localStorage.getItem('itemVerified') == 'True') {

第二种情况是,如果您要检查从中加载文档的站点,您需要将操作添加到事件侦听器中,您可以执行以下操作。

    <script type="text/javascript">
     var verifyCookie = function(){

   if (localStorage.getItem('itemVerified') == 'True') {
    console.log("All right");
        window.location = "success.html";
   }
   else {
    alert("You are not able to enter this site!");
    window.location = "error.html";
   }
      };
     window.addEventListener ('DOMContentLoaded', verifyCookie, false);
    </script>

问候。

于 2013-04-14T08:47:37.720 回答