前端之家收集整理的这篇文章主要介绍了
jQuery属性选择器用于多个值,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给定以下html,是否有一个选择器允许我基于类型
获取两者?
<input type="text" />
<input type="button" />
$('input[type=text || button]'); //for example,double pipes as an OR does not work
我浏览了这些文档,但是我找不到任何使用逻辑运算符的能力或提供匹配列表的方法。
这应该有助于:
$('input[type="text"],input[type="button"]');
原文链接:https://www.f2er.com/jquery/182496.html