jQuery 手风琴问题
大家好。
我有一个非常简单的简单手风琴代码。
$('div.header').click(function() {
$('div.content').slideUp('normal');
$(this).next().slideDown('normal');
}); $("div.content").hide();
HTML
<div class="header">Header</div>
<div class="content">Content... </div>
因此,每当标题被点击时,内容就会展开。
问题是,当我单击相同的标题内容时,内容会向上滑动并向下滑动。
我不知道如何解决这个问题。
非常感谢任何帮助。
提前谢谢你
多姆
HI all.
I have this very simple code for simple accordion.
$('div.header').click(function() {
$('div.content').slideUp('normal');
$(this).next().slideDown('normal');
}); $("div.content").hide();
HTML
<div class="header">Header</div>
<div class="content">Content... </div>
So whenever header is being click content expands.
the problem is that when I click on the same header content slides up and going back down.
I'm not sure how to sort this out.
Any help much appreciated.
Thank you in advance
Dom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用slideToggle()
http://api.jquery.com/slideToggle/
use slideToggle()
http://api.jquery.com/slideToggle/
您可以在滑动之前确定内容是否已经可见
You could determine if the content is already visible before sliding using