gpt4 book ai didi

jQuery 如果 div 的 id 小于 var,我想更改 div 的类

转载 作者:太空宇宙 更新时间:2023-11-03 19:33:05 25 4
gpt4 key购买 nike

如果 div 的 id 小于我的 var 的值,我正在尝试更改该 div 的类。这是我第一次提出问题,也是我第一次使用 jQuery,所以我确信这非常简单,但我无法在任何地方找到答案。这是我目前使用的代码:

$(function(){
var today = new Date();
var weekno = today.getWeek()-1;
$("div[id$<weekno]").addClass("hidden");
})

谢谢!

最佳答案

这是一个如何完全按照描述进行操作的示例:http://jsfiddle.net/SinisterSystems/yJ4cu/2/

HTML:

<div id="1">Hello world</div>
<div id="2">Hello world2</div>
<div id="15">Hello world2</div>

CSS:

.foo {
font-size:100px;
}

jQuery:

$(function(){
$( "div" ).each(function( index ) {
if($(this).attr('id') < 10){
$(this).addClass('foo');
}
});
});

那么,我们在这里用 JS 做什么:

$( "div" ).each(function( index ) { // Find every div
if($(this).attr('id') < 10){ // if it has an ID of under x
$(this).addClass('foo'); // add the class
}
});

关于jQuery 如果 div 的 id 小于 var,我想更改 div 的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21345457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com