作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何分别为每个元素运行函数?
因此,如果我单击第一个打开
,则仅应打开第一组。
$(document).on('click', "a.showdetails", function () {
$( ".group" ).toggleClass( "opened" );
});
.option{
width: 200px;
}
.showdetails{
display: block;
}
.group{
display: none;
width: 200px;
height: 100px;
background: #f2f2f2;
}
.group.opened{
display: block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="option">
<a href="#" class="showdetails">open</a>
<div class="group"></div>
</div>
<div class="option">
<a href="#" class="showdetails">open</a>
<div class="group"></div>
</div>
最佳答案
您需要使用单击的元素上下文来查找其具有类组的同级元素:
var groupelements = $('.group');
$(document).on('click', "a.showdetails", function () {
var targetgroup = $(this).next('.group');
groupelements.filter(targetgroup).removeClass( "opened" )
targetgroup.toggleClass( "opened" );
});
注意:您在此处使用了事件委托(delegate)。仅当元素 a.showdetails
动态加载时才应使用它。否则使用 .click
绑定(bind)静态元素的点击。
关于jquery - 分别为每个元素运行函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36842531/
我想将单独的背景渐变应用于 Pandas 数据框中的不同列 a b c ----- 1 2 3 4 5 6 9 2 3 我想要 a 列的背景渐变和另一列的不同背景渐变。 我怎么做? 非常感谢。 最佳答
我有一些非常基本的饼图数据。 Yes: 189.84 (57.03%) No: 252 (42.97%) Abstain: 0 (0%) 当我在此 URL 请求 google 饼图时
我目前正在使用通常很棒的 appcompat-v7我的应用程序中的库,我正在尝试为我的 CheckBoxes 着色无需更改 Toolbar 中的图标颜色(如后退箭头或那三个点)。 按照目前的样子 -
我正在通过使用默认用户名“root”和密码设置为默认“”登录mysql服务器phpMyAdmin,但我无法登录。很高兴知道解决这个问题的可行解决方案。我正在通过 wamp 服务器登录。 最佳答案 默认
我是一名优秀的程序员,十分优秀!