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.
我需要一些代码可以在单击链接时显示 div。
一旦这个 div 出现,用户应该能够点击他们点击的相同链接以使这个 div 出现;使当前的 div 消失,第二个 div 在屏幕上占据它的位置。
在这第二个 div 中,用户应该能够关闭 div 并位于第一格,在页面上单击时打开/关闭 div 的链接。
任何人都可以告诉我或指导我一些代码,以便我可以实现我上面描述的东西吗?
使用带有以下代码的jquery:
$(document).ready(function(){ $("#link").on("click", function() { $("#id_of_the_div").toggle(); }) });