jquery remove class

前端 未结 4 2033
礼貌的吻别
礼貌的吻别 2021-01-21 00:12

i got a class,

div.domtab div{
        clear:both;
        width:auto;
        background:#eee;
        color:#000;
        padding:1em 1.5em;
    }
         


        
4条回答
  •  情歌与酒
    2021-01-21 00:46

    Considering your markup is like:

    ...
    ...

    You can remove the class by

    $('#tag1').closest('.domtab').removeClass('domtab');

提交回复
热议问题