gpt4 book ai didi

javascript - Jquery 选择器输入[type=text]')

转载 作者:IT王子 更新时间:2023-10-29 02:44:17 25 4
gpt4 key购买 nike

我写了一段代码,基本上选择了所有 input type=text 元素,如下所示:

$('.sys input[type=text]').each(function () {}

如何将其更改为选择 input[type=text]select

最佳答案

使用普通的 CSS 选择器:

$('.sys input[type=text], .sys select').each(function() {...})

如果你不喜欢重复:

$('.sys').find('input[type=text],select').each(function() {...})

或者更简洁,传入context参数:

$('input[type=text],select', '.sys').each(function() {...})

注意:在内部 jQuery 会将上面的转换为 find() 等价物

http://api.jquery.com/jQuery/

Internally, selector context is implemented with the .find() method, so $('span', this) is equivalent to $(this).find('span').

我个人认为第一个备选方案最易读 :),尽管如此

关于javascript - Jquery 选择器输入[type=text]'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10649869/

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