如何使用 JQuery 选择具有特定名称的任何元素(输入、选择、文本区域)
我在表单中有各种输入、选择和文本区域。我想根据名称选择其中之一,而不知道 jQuery 元素的类型。我知道我可以做类似的事情
$("input[name=foo], textarea[name=foo], select[name=foo]")
,但我想知道我是否可以以更简洁的方式做到这一点。你怎么说?
I have various inputs, selects and textareas in a form. I'd like to select one of them based on name without knowing the type of the element with jQuery. I know I can do something like
$("input[name=foo], textarea[name=foo], select[name=foo]")
but I wonder if I can do it in a more concise way. What do you say?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://api.jquery.com/input-selector/
:input[名称=foo]
http://api.jquery.com/input-selector/
:input[name=foo]
您可以使用
:input
过滤器选择器:更多信息: http://api.jquery.com/input-selector/
You can use the
:input
filter selector:More Info: http://api.jquery.com/input-selector/