0
点赞
收藏
分享

微信扫一扫

jQuery点击切换增加和删除class类

一叶随风_c94d 2022-07-12 阅读 42


$(".text").click(function () {
if ($(this).parent().hasClass("select")) {
$(this).parent().removeClass("select");
}
else {
$(this).parent().addClass("select");
}
});


举报

相关推荐

0 条评论