gpt4 book ai didi

javascript - 显示隐藏可用内容

转载 作者:行者123 更新时间:2023-11-30 08:41:30 26 4
gpt4 key购买 nike

我的帖子里有一些内容。但我想隐藏它,直到我点击这篇文章中的链接。我还没有建立这个网站,但我会说出我的想法。

  1. The first Heading
  2. The second Heading
  3. The third Heading
  4. The fourth Heading

/* The content following are hidden Until I clicked to a link above. / / Content is available wrapped in a div tag, do not loaded from another site. */

  1. Content 1 will be show only click to "1. The first Heading"
  2. Content 2 will be show only click to "2. The second Heading"
  3. Content 3 will be show only click to "3. The third Heading"
  4. Content 4 will be show only click to "4. The fourth Heading"

可以使用 CSS 或 Ajax/jQuery 来创建效果吗?

最佳答案

您可以使用以下 jquery 代码来完成:

$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});

这是 complete demo如何通过点击事件隐藏和显示元素。

关于javascript - 显示隐藏可用内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25958180/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com