警报一次 (jQuery)
是否可以在用户第一次访问时就某件事提醒一次?无法使用 cookie,因为它是静态站点,仅使用 html 和 javascript。
谢谢!
Is it possible to alert a user just once about something on his first visit? Can't use cookies because its a static site, only html and javascript are used.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果只有 HTML 和 JavaScript,则可以使用 cookie...JavaScript 可以向浏览器读取/写入 cookie。
我会设置一个真正的基本 cookie 值,并在提醒您需要什么之前检查它。
您可以使用此代码(向下滚动)来读取/写入cookie,然后执行某些操作像这样:
You can use cookies if it's only HTML and JavaScript... JavaScript can read/write cookies to the browser.
I would set a real basic cookie value, and check that before alerting what you need.
You can use this code (scroll down) to read/write cookies and then do something like this:
您仍然可以使用带有 JavaScript 的 cookie。
You can still use cookies with javascript.