slideToggle无效

时间:2013-02-20 05:17:13

标签: jquery slidetoggle

SlideToggle在我的网站上因某些原因无效。主要问题当我点击“显示”按钮时,它不会向下滑动,而是立即显示内容。但它完全滑动UP以按“隐藏”按钮隐藏内容。这是我的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/

1 个答案:

答案 0 :(得分:4)

只需添加

.newsFull {display:inline-block;}

到你的CSS

Check this fiddle