可能重复:
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
代码?
感谢
答案 0 :(得分:164)
答案 1 :(得分:7)
正如链接所描述的那样given in comment,这个
$('p[MyTag]').each(function(index) {
document.write(index + ': ' + $(this).text() + "<br>");});
有效(playable example)。