警报一次 (jQuery)

发布于 2024-09-06 13:53:50 字数 84 浏览 8 评论 0原文

是否可以在用户第一次访问时就某件事提醒一次?无法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泅人 2024-09-13 13:53:50

如果只有 HTML 和 JavaScript,则可以使用 cookie...JavaScript 可以向浏览器读取/写入 cookie。

我会设置一个真正的基本 cookie 值,并在提醒您需要什么之前检查它。

您可以使用此代码(向下滚动)来读取/写入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);
}

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:

// 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);
}
Oo萌小芽oO 2024-09-13 13:53:50

不能使用cookie,因为它是静态的
网站,只有 html 和 javascript
使用过。

您仍然可以使用带有 JavaScript 的 cookie

Can't use cookies because its a static
site, only html and javascript are
used.

You can still use cookies with javascript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文