javascript - js 如果一个标签有两个类,点击这个标签,让其中一个类变成另一个类遇到的问题
迷茫
迷茫 2017-04-10 15:16:32
0
3
370

点击click_chapter,让span标签的类show变成hide,

cuicons这个类不变,还在那里。

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(3)
Peter_Zhu
$(".click_chapter").on("click",function(){
    var a=$(this).find("span.cuicons").hasClass("show");
    if(a){
        $(this).find("span.cuicons").removeClass("show").addClass("hide");
    }
})
PHPzhong

用jquery:$(".click_chapter span").removeClass("show").addClass("hide");

Ty80

既然 cuicons 这个类不变,可以使用如下选择器:

$('p > span.cuicons').click(function() {
    $(this).removeClass('show').addClass('hide');
})
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template