因此,在我的页面上有一个切换块,现在我需要在同一页面上添加另一个切换块,但默认情况下第一个切换是活动/打开的。我一直在 JS 周围工作,但到目前为止还没有运气,所以我需要你的宝贵帮助才能让它工作。谢谢!
Javascript
jQuery(window).load(function(){
$('.toggle-view li').click(function () {
var text = $(this).children('div.toggle-content');
if (text.is(':hidden')) {
text.slideDown('200');
$(this).children('span').html('<i class="icon-minus"></i>');
} else {
text.slideUp('200');
$(this).children('span').html('<i class="icon-plus"></i>');
}
$(this).toggleClass('activetoggle');
});
});