gpt4 book ai didi

Jquery .filter() 问题

转载 作者:行者123 更新时间:2023-12-01 01:11:58 25 4
gpt4 key购买 nike

给定以下 HTML:

<div class="parent">
<span class="child">10</span>
</div>

<div class="parent">
<span class="child">20</span>
</div>

我想根据它的跨度值(子值)过滤和隐藏父div,所以想到了这样做:

<script>
$('span.child').filter(function(index) {
return ($(this).text() < '15');
}).$(this).parent().hide();
</script>

没有成功...我没有根据跨度值隐藏父级 div..

有人可以帮助我吗?

非常感谢。

最佳答案

试试这个:

jQuery('span.child').filter(function(index) {
return (jQuery(this).text() < '15');
}).parent().hide();

关于Jquery .filter() 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2601180/

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