how to toggle attr() in jquery

前端 未结 10 1942
独厮守ぢ
独厮守ぢ 2021-01-30 15:50

I have a simple add attribute function:

$(\".list-toggle\").click(function() {
    $(\".list-sort\").attr(\'colspan\', 6);
});

My question is:

10条回答
  •  粉色の甜心
    2021-01-30 16:26

    $(".list-toggle").click(function() {
        $(this).hasAttr('colspan') ? 
            $(this).removeAttr('colspan') : $(this).attr('colspan', 6);
    });
    

提交回复
热议问题