gpt4 book ai didi

javascript - 如何防止可折叠内容默认不展开?

转载 作者:行者123 更新时间:2023-11-30 17:04:29 25 4
gpt4 key购买 nike

可折叠内容默认展开。但我只想通过单击使其展开。如何在此处默认设置类似 expand="false" 的内容?

Javascript:

<script>
$("#expand dt a").click(function () {
$(this).parent().siblings("dd").slideToggle();
});
</script>

HTML:

<dl>
<dt class="right">
<a href="#">
<img src="img/more-button.png">
<span class="learn">&nbsp;Learn More:Areas of Practise</span>
</a>
</dt>

<!--collapsible content begins-->
<dd class="row collapse">
test
</dd>
<!--collapsible content ends-->

</dt>
</dl>

最佳答案

只需设置style="display: none;"<dd>为初始值。

If the element is initially displayed, it will be hidden; if hidden, it will be shown. The display property is saved and restored as needed.

http://api.jquery.com/slidetoggle/

关于javascript - 如何防止可折叠内容默认不展开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28272997/

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