是否可以在第一次访问时提醒用户一次?不能使用cookie,因为它是一个静态网站,只使用html和javascript。
谢谢!
答案 0 :(得分:4)
如果只有HTML和JavaScript,您可以使用Cookie ... JavaScript可以读取/写入浏览器的Cookie。
我会设置一个真正的基本cookie值,并在提醒您需要之前检查它。
您可以使用this code(向下滚动)来读取/写入Cookie,然后执行以下操作:
// if the cookie doesn't exit,
// it means it's the first time the user is visiting this page
if(!readCookie('boom')) {
// this will only run the first time
alert("something");
// now set the cookie value "boom" for 7 days
createCookie('boom','1',7);
}
答案 1 :(得分:1)
无法使用Cookie,因为它是静态的 网站,只有HTML和JavaScript 使用
您仍然可以使用cookies with javascript。