gpt4 book ai didi

jquery - 滑动切换不起作用

转载 作者:行者123 更新时间:2023-12-01 07:19:54 25 4
gpt4 key购买 nike

由于某种原因,SlideToggle 在我的网站上无法工作。主要问题是,当我单击“显示”按钮时,它不会向下滑动,而是立即显示内容。但通过按“隐藏”按钮,它可以完美地向上滑动以隐藏内容。这是我的 JavaScript。谁知道这里可能出现什么问题?

$(document).ready(function(e) {
$('.newsFull').hide();
$('.switch').click(function(e) {
$(this).parent().children('.switch').toggle();
var text = $(this).parent().children('.newsFull');
text.slideToggle();

});

});

这是一个链接 http://jsfiddle.net/ZxF9j/

最佳答案

只需添加

.newsFull {display:inline-block;}

到你的CSS

Check this fiddle

关于jquery - 滑动切换不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14972769/

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