运行函数/效果一次然后停止
我正在尝试找到一种方法,使用没有 cookies 的 jquery 来显示一个块,然后单击它来 hide()
并且不再显示。
它是我页面上临时正在建设的div
。
有什么方法可以单击它来关闭它,这使用 jQuery 很容易,然后不再加载它? 因为它不会出现在其他页面上吗?
I am trying to find a way using jquery without cookies to display a block and click it to hide()
and not show again.
It is a temporary under construction div
on my page.
Is there any way to click it to close, which is easy enough using jQuery, then not have it load again? For it won't on the other pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过布尔变量的条件检查加载
div
。 因此,在伪代码中:编辑: 为了使其无法在其他页面上工作,您需要在客户端或服务器上的某处使用 cookie 或某种状态持久性。
Load the
div
with a conditional check of a bool variable. So in pseudocode:Edit: for it not to work on other pages you would need to use a cookie or some sort of state persistence somewhere, either on the client or the server.