gpt4 book ai didi

javascript - jQuery 将类添加到另一个 div

转载 作者:行者123 更新时间:2023-12-03 03:59:56 24 4
gpt4 key购买 nike

我有以下代码,如果名为“VALID_VAR_264”的 Div 包含单词“Required”,则“sponz”类将添加到该 div 中。

但是,我该如何调整这一点,以便如果名为“VALID_VAR_264”的 Div 包含“Required”,那么我可以让它将类“sponz”添加到不同的 div。

这可能吗?

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>

<script type="text/javascript">//<![CDATA[
$(window).load(function(){
jQuery('#VALID_VAR_264:contains("Required")').addClass('sponz')
});//]]>

</script>

最佳答案

您可以获取 jQuery 对象的长度,如果它大于 0,则执行您需要的代码:

if(jQuery('#VALID_VAR_264:contains("Required")').length>0) 
{
$(otherSelector).addClass('sponz');
}

关于javascript - jQuery 将类添加到另一个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44769569/

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