标签:code attr 元素 代码 att html test hello query
查找所有含有 id 属性的 div 元素
<div>
<p>Hello!</p>
</div>
<div id="test2"></div>
$("div[id]")
[ <div id="test2"></div> ]
标签:code attr 元素 代码 att html test hello query
原文地址:http://www.cnblogs.com/winyh/p/6236357.html