jquery add class onclick包括div

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery add class onclick包括div相关的知识,希望对你有一定的参考价值。

请问我该如何创作?点击包括div灰色更改背景prev div红色只点击框,其他男孩白色

$('.box .center').click(function() {
   $('.box').removeClass('red');
   $('.box').addClass('red');
});
.box {
    width: 250px;
    height: 100px;
    border: 1px #000 solid;
    margin: 2px 0;
}

.red {
    background: red;
}
.center {margin: 40px 100px; width: 50px; height: 25px; background: gray;  display: block; cursor:pointer;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class='box'>
  <div class="center"></div>
</div>
<div class='box'>
  <div class="center"></div>
</div>
<div class='box'>
  <div class="center"></div>
</div>
答案

那是你在找什么?

$('.box .center').click(function() {
   $('.box').removeClass('red');
   $(this).parent('.box').addClass('red');
});
.box {
    width: 250px;
    height: 100px;
    border: 1px #000 solid;
    margin: 2px 0;
}

.red {
    background: red;
}
.center {margin: 40px 100px; width: 50px; height: 25px; background: gray;  display: block; cursor:pointer;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class='box'>
  <div class="center"></div>
</div>
<div class='box'>
  <div class="center"></div>
</div>
<div class='box'>
  <div class="center"></div>
</div>

以上是关于jquery add class onclick包括div的主要内容,如果未能解决你的问题,请参考以下文章

JS 2020/6/06 jquery bootstrap

JS 2020/6/06 jquery bootstrap

在 asp.net 中使用 jquery 选项卡的 OnClick 函数

关于JQuery的add class方法和attr方法联系和区别?

Javascript(不是jquery)按钮onclick,函数更改按钮调用函数的类

使用 jquery 更改具有嵌套内容的 div 的可见性,onclick