标签:效果 blog javascrip remove pre ble list on() ext
// $(‘.cjwt_list .qbox‘).on(‘click‘,function(){
// if($(this).next(‘.abox‘).is(‘:visible‘)){
// $(this).removeClass(‘on‘);
// $(this).next(‘.abox‘).stop(true,true).slideUp();
// }else{
// $(this).addClass(‘on‘);
// $(this).next(‘.abox‘).stop(true,true).slideDown();
// }
// })
$(‘.cjwt_list .qbox‘).on(‘click‘,function(){
$(this).next(‘.abox‘).stop(true,true).slideToggle();
$(this).toggleClass(‘on‘);
})
上下两段代码效果一样!!!
标签:效果 blog javascrip remove pre ble list on() ext
原文地址:http://www.cnblogs.com/ghfjj/p/6731316.html