Jquery 选择器如果有标题

发布于 2024-12-11 19:17:32 字数 104 浏览 0 评论 0原文

使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

剩一世无双 2024-12-18 19:17:33
$('input[type="text"][title]') 

在括号中添加属性名称(不带任何=)将搜索具有该属性的所有元素

$('input[type="text"][title]') 

Adding the attribute name in brackets without any ='s will search for all elements which have that attribute

吾性傲以野 2024-12-18 19:17:32

您可以指定多个属性,如以下选择器所示:

$('input[type="text"][title]')

此处的工作示例:http://jsfiddle.net/VW64y/

You can specify multiple attributes, as in the following selector:

$('input[type="text"][title]')

Working example here: http://jsfiddle.net/VW64y/

高冷爸爸 2024-12-18 19:17:32

没有 equals 子句的属性选择器将仅测试是否存在:

$("input[type='text'][title]");

An attribute selector without the equals clause will just test for existence:

$("input[type='text'][title]");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文