Jquery 选择器如果有标题
使用jquery,我想选择具有 title 属性的 input[type="text"]
元素(不是特定内容,只是标题的存在)。
我怎样才能做到这一点?
Using jquery, I want to select input[type="text"]
elements which has a title attribute(not a specific content, just the existance of the title).
How can I achieve that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在括号中添加属性名称(不带任何=)将搜索具有该属性的所有元素
Adding the attribute name in brackets without any ='s will search for all elements which have that attribute
您可以指定多个属性,如以下选择器所示:
此处的工作示例:http://jsfiddle.net/VW64y/
You can specify multiple attributes, as in the following selector:
Working example here: http://jsfiddle.net/VW64y/
没有 equals 子句的属性选择器将仅测试是否存在:
An attribute selector without the equals clause will just test for existence: