// $('.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');
		})                    

  上下两段代码效果一样!!!

相关文章:

  • 2021-06-14
  • 2022-12-23
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-02-19
猜你喜欢
  • 2021-10-14
  • 2021-06-11
  • 2022-12-23
  • 2022-01-09
  • 2022-01-27
  • 2022-02-18
  • 2021-08-15
相关资源
相似解决方案