码迷,mamicode.com
首页 > 其他好文 > 详细

:has(selector) 匹配含有选择器所匹配的元素的元素

时间:2016-12-30 13:17:51      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:匹配   html   test   ddc   jquer   元素   cto   添加   add   

描述:

给所有包含 p 元素的 div 元素添加一个 text 类

HTML 代码:
<div><p>Hello</p></div>
<div>Hello again!</div>
jQuery 代码:
$("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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!