标签:匹配 html test ddc jquer 元素 cto 添加 add
给所有包含 p 元素的 div 元素添加一个 text 类
<div><p>Hello</p></div>
<div>Hello again!</div>
$("div:has(p)").addClass("test");
[ <div class="test"><p>Hello</p></div> ]
:has(selector) 匹配含有选择器所匹配的元素的元素
标签:匹配 html test ddc jquer 元素 cto 添加 add
原文地址:http://www.cnblogs.com/winyh/p/6236333.html