欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js遍历添加栏目类添加css 再点击其它删除css【推荐】

程序员文章站 2022-07-01 20:46:17
具体代码如下: //js遍历添加栏目类添加css 再点击其它删除css $(".radio-group .ckselect").each(function(...

具体代码如下:

//js遍历添加栏目类添加css 再点击其它删除css

$(".radio-group .ckselect").each(function(index) {
  $(this).click(function() {
    var tagid=$(this).attr('tagid');
    $("#tagid").val(tagid)
    $(".ckselect").removeclass("selected");
    $(".ckselect").eq(index).addclass("selected")
    
  })
});
//js点击显示关闭层,空白区域也关闭  
$(".zu-top-nav-userinfo").click(function(e) {
  if ($(".peoples").hasclass("allhide")) {
    $(".peoples").hide();
    $(".peoples").removeclass("allhide");
    return
  }
  e.stoppropagation();
  $(".peoples").show();
  $(".peoples").addclass("allhide")
});
$(document).click(function() {
  if ($(".peoples").hasclass("allhide")) {
    $(".peoples").hide();
    $(".peoples").removeclass("allhide")
  }
});

总结

以上所述是小编给大家介绍的js遍历添加栏目类添加css 再点击其它删除css,希望对大家有所帮助