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();
});
});