gpt4 book ai didi

javascript - 需要获取的是元素内的任何子元素都有背景

转载 作者:行者123 更新时间:2023-11-28 10:57:19 25 4
gpt4 key购买 nike

我需要找出它们的任何跨度是否具有背景样式,这样我就可以从它的属性中获取值,我有 $(this)。结构为:

<div id="operative_time_limit" class="timedivd">
<span title="1 hours" data-y="1" data-x="0"></span>
<span title="2 hours" data-y="2" data-x="0"></span>
<span title="3 hours" data-y="3" data-x="0"></span>
<span title="4 hours" data-y="4" data-x="0"></span>
</div>

使用 alert(jQuery(this).children().css('background').length); 但结果总是为 0

最佳答案

试试这个,

alert($('#operative_time_limit').find('span').length);

对于具有 background-color 属性的 span ,然后尝试一下,

var c=0;
$('#operative_time_limit').find('span').each(function(){
if($(this).css('backgroundColor')) // or 'background-color'
c++;
});
alert(c);

关于javascript - 需要获取的是元素内的任何子元素都有背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18074520/

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