如何让DIV内容滑出并仅在用户点击DIV标题时才出现?

发布于 2024-11-17 08:57:09 字数 238 浏览 3 评论 0原文

如果我的 DIV 标题为联系方式地址详细信息,如下例所示:

http://jsfiddle.net/2CZFL/

我如何使用 jQuery 来实现一个功能,即 div 的内容仅在以下情况下滑出并显示给用户:用户单击 DIV标题。

If I have a DIV heading of Contact Details or Address Details, as in the following example:

http://jsfiddle.net/2CZFL/

how can I use jQuery to implement a feature whereby the contents of the div only slide out and appear to the user when the user clicks on the DIV heading.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

牵你的手,一向走下去 2024-11-24 08:57:09

请参阅小提琴了解如何打开和关闭它: http://jsfiddle.net/maniator/wU8s2/

See fiddle for how to make it open and close: http://jsfiddle.net/maniator/wU8s2/

铁轨上的流浪者 2024-11-24 08:57:09

这是一个简单的例子

<script>
  jQuery(document.body).ready(function(){
    jQuery('.sneakycontent h3').click(function(){
      jQuery('.sneakycontent div').slideToggle();
    });
  });
</script>
<div class="sneakycontent">
  <h3>Click Me Newb!</h3>
  <div style="display:none;">Keep eating those stackoverflow weaties kiddies and you can be as cool as me!</div>
</div>

here's a simple example

<script>
  jQuery(document.body).ready(function(){
    jQuery('.sneakycontent h3').click(function(){
      jQuery('.sneakycontent div').slideToggle();
    });
  });
</script>
<div class="sneakycontent">
  <h3>Click Me Newb!</h3>
  <div style="display:none;">Keep eating those stackoverflow weaties kiddies and you can be as cool as me!</div>
</div>
是伱的 2024-11-24 08:57:09

使用小提琴进行简单演示,http://jsfiddle.net/andresilich/DR3x8/

[确保将“display:none”添加到标题下方的内容中,以隐藏它们并仅在单击时显示。]

Simple demo with using your fiddle, http://jsfiddle.net/andresilich/DR3x8/

[Make sure to add "display:none" to the content below the headers in order to hide them and only show when clicked.]

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