Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的页面上我有很多label标签。其中一些具有for属性。该标签的jQuery选择器应该如何?
label
for
试试这个,
现场演示
$("label[for]")
试试这个:$('label[for]')如果你不知道什么等于for
$('label[for]')
像这样的选择器会很有帮助:
$('label[for="foo"]').css('color', 'red);
评论后编辑:
在不知道for值的情况下选择所有标签:
$('label[for]').css('color', 'red);