📜  如何只显示一次 html 页面 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:12.477000             🧑  作者: Mango

代码示例1
if (localStorage.getItem("visited")) {
    window.location.href = "webPlatform.html";
}
localStorage.setItem("visited", "true");