计算样式 Val = 0 的元素?
我想知道如何计算样式 val = 0 的
列表?即类似
jQuery('ol.myClass li').each(function () {
if (jQuery(this).css('top') == '0px') {
count = + 1;
}
});
我该如何执行此操作,以便它找到所有元素并为所有 css('top')
具有 val = 0 的元素提供一个数字?
I was wondering how to count a list of <li>
with a style val = 0 ?
i.e. something like
jQuery('ol.myClass li').each(function () {
if (jQuery(this).css('top') == '0px') {
count = + 1;
}
});
How would I do this so it finds all elements and gives me a figure for all those that have the val = 0 for css('top')
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试类似的方法:
Try something like:
我会说尝试这种方式。
I would say try this way.
看起来不错。
但你的计数应该是:
或者
It looks good.
But your count should be:
or