blob: ad784814b6799e62ba588d6efaf936fb836737cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
---
title: ':has'
slug: 'Web/CSS/:has'
tags:
- CSS
- Pseudo-class
- Reference
- Selectors
translation_of: 'Web/CSS/:has'
---
<div>{{CSSRef}}</div>
<p><strong><code>:has()</code> </strong>CSS<strong> </strong><a href="/zh-CN/docs/Web/CSS/Pseudo-classes">伪类</a>代表一个元素,其给定的选择器参数(相对于该元素的 {{cssxref(":scope")}})至少匹配一个元素。</p>
<p><code>:has()</code><strong> </strong>伪类接受一个选择器组作为参数。在当前规范中 <code>:has</code> 并未列为<a href="https://drafts.csswg.org/selectors/#live-profile">实时选择器配置</a>的一部分,意味着其不能用于样式表中,只能用于如 {{domxref("document.querySelector()")}} 的函数中。</p>
<pre><code>/* 选择任何直接包含 <img> 子元素的 <a> */
/* 注意,目前还没有任何浏览器支持此方法 */
/* 此伪类也未计划投入样式表中使用 */
var test = document.querySelector('a:has(> img)');</code></pre>
<h2 id="Syntax" name="Syntax">语法</h2>
<pre class="syntaxbox">{{CSSSyntax}}</pre>
<h2 id="Examples" name="Examples">示例</h2>
<p>下面的选择器只会匹配直接包含 {{HTMLElement("img")}} 子元素的 {{HTMLElement("a")}} 元素:</p>
<pre><code>a:has(> img)</code>
</pre>
<p>下面的选择器只会匹配其后紧跟着 {{htmlelement("p")}} 元素的 {{HTMLElement("h1")}} 元素:</p>
<pre><code>h1:has(+ p)</code></pre>
<h2 id="规范">规范</h2>
<table>
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">注释</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSS4 Selectors', '#relational', ':has()') }}</td>
<td>{{ Spec2('CSS4 Selectors') }}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>
<p>{{Compat("css.selectors.has")}}</p>
<div id="compat-mobile"></div>
|