Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找到一种使用不带cookies的jquery来显示一个块并单击它hide()而不再次显示的方法。
hide()
div这是我页面上的临时建设中。
div
有什么方法可以点击它关闭,这很容易使用jQuery,然后不会再次加载?因为它不会在其他页面上?
加载div一个布尔变量的条件检查。所以在伪代码中:
var HasBeenViewed = false; If (!HasBeenViewed) { show div; HasBeenViewed = true; }
编辑:它不能在其他页面上工作,你需要在客户端或服务器上的某个地方使用 cookie 或某种状态持久性。