gpt4 book ai didi

javascript - 我们可以将 $(this) 与其他选择器一起使用吗?

转载 作者:数据小太阳 更新时间:2023-10-29 04:05:37 26 4
gpt4 key购买 nike

例如:

$("#"+$(this).attr("id")+" option[value='0']")

我们能否将代码简化为类似的东西

$(this+" option[value='0']") 

最佳答案

这些将与您的第一个语句执行相同的操作:找到具有 0 作为它们的 valueoption 元素并且是(不限制直接) this 的 child 。

$(this).find('option[value="0"]')

$('option[value="0"]', this)

资源:

关于javascript - 我们可以将 $(this) 与其他选择器一起使用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6134924/

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