gpt4 book ai didi

javascript - jQuery : select all element with custom attribute

转载 作者:行者123 更新时间:2023-11-28 04:58:21 27 4
gpt4 key购买 nike

Possible Duplicate:
jQuery, Select by attribute value, adding new attribute
jQuery - How to select by attribute

请考虑以下代码:

<p>11111111111111</p>
<p MyTag="nima">2222222222</p>
<p>33333333333</p>
<p MyTag="Sara">>4444444444</p>

如何选择全部p带有属性 MyTag 的标签?

谢谢

最佳答案

使用"has attribute" selector :

$('p[MyTag]')

或者选择该属性具有特定值的一个:

$('p[MyTag="Sara"]')

other selectors对于“属性值开头为”、“属性值包含”等。

关于javascript - jQuery : select all element with custom attribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42352695/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com