首页 > 代码库 > jquery点击选中,再次点击取消选中

jquery点击选中,再次点击取消选中

if(!$(this).hasClass("current")){
   $(this).addClass("current");
 }else{
    $(this).removeClass("current");
 }

 

jquery点击选中,再次点击取消选中