Jquery 添加 +或减去类选择器
我用来
<script>
$("#a-slots-16-history div:nth-child(odd)").addClass(function() {
return "slick-toggle" + $(this).index();
});
</script>
给我网站上的每个其他 div 赋予一个值,因此第三个 div 将具有 .slick-toggle-2 类(因为 0 是一个值),
但是我想操纵它来获取前一个 div 的值为 -1,因此实际上第三个 div 的类为 .slick-toggle-1
I'm using
<script>
$("#a-slots-16-history div:nth-child(odd)").addClass(function() {
return "slick-toggle" + $(this).index();
});
</script>
to give a value to every other div on on my website so the 3rd div will have the class .slick-toggle-2 (as 0 is a value)
however i want to manipulate this to take the numeric value of the previous div so -1 from the value so in fact the 3rd div would have the class .slick-toggle-1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题..为什么不直接从 $(this).index() 返回的整数中减去 1 呢?
If I understood your question correctly.. why not just subtract 1 from the integer returned by $(this).index()?