我有一个需要像 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>