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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
---
title: Element.matches()
slug: Web/API/Element/matches
translation_of: Web/API/Element/matches
---
<p>{{ APIRef("DOM") }}</p>
<h2 id="Summary" name="Summary">Описание</h2>
<p>Метод <strong><code>Element.matches()</code></strong> вернёт <code>true</code> или false, в зависимости от того, соответствует ли элемент указанному css-селектору.</p>
<div class="warning">
<p>В некоторых браузерах данный метод имеет нестандартное название - <code>matchesSelector()</code>.</p>
</div>
<h2 id="Syntax" name="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>var result</em> = <em>element</em>.matches(selectorString)
</pre>
<ul>
<li><code>Результат выполнения - <strong>true</strong> или <strong>false</strong>.</code></li>
<li><strong><code>selectorString</code></strong> - строка, содержащая любой css-селектор, к примеру:<em> <strong>"div"</strong></em>,<em> <strong>"*"</strong></em>,<em> <strong>"#id"</strong></em> и прочие.</li>
</ul>
<h2 id="Example" name="Example">Пример</h2>
<pre class="brush: html"><div id="one">Первый подопытный</div>
<div class="someClass" id="two">Второй подопытный</div>
<script type="text/javascript">
var coll = document.querySelectorAll("div");
for (var i = 0, len = coll.length; i < len; i++) {
if (coll[i].matches(".someClass")) {
alert(coll[i].id+": Я выжил!");
}else{
coll[i].remove();
}
}
</script>
</pre>
<p>Вызов alert сработает только для второго элемента div, которому присвоен класс "someClass".</p>
<h2 id="Исключения">Исключения</h2>
<dl>
<dt><code>SYNTAX_ERR</code></dt>
<dd>Указаный css-селектор не является допустимым<em> ("/=22=1", "&@*#", "%%''23" и т.п приведут к ошибке).</em></dd>
</dl>
<h2 id="Полифилл">Полифилл</h2>
<p>Полифил будет работать только в браузерах, поддерживающих метод document.queryselectorAll.</p>
<pre class="brush: js">;(function(e) {
var matches = e.matches || e.matchesSelector || e.webkitMatchesSelector || e.mozMatchesSelector || e.msMatchesSelector || e.oMatchesSelector;
!matches ? (e.matches = e.matchesSelector = function matches(selector) {
var matches = document.querySelectorAll(selector);
var th = this;
return Array.prototype.some.call(matches, function(e) {
return e === th;
});
}) : (e.matches = e.matchesSelector = matches);
})(Element.prototype);</pre>
<h2 id="sect1"> </h2>
<h2 id="Спецификация">Спецификация</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-element-matches', 'Element.prototype.matches')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
</tr>
</tbody>
</table>
<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Особенность</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Поддерживается , но имеет иное название</td>
<td>
<p>{{CompatVersionUnknown}} имеет название <code>webkitMatchesSelector</code></p>
</td>
<td>{{CompatGeckoDesktop("1.9.2")}} имеет название <code>mozMatchesSelector</code> [1]</td>
<td>9.0 имеет название <code>msMatchesSelector</code></td>
<td>11.5 имеет название <code>oMatchesSelector</code>,<br>
а с 15.0 - <code>webkitMatchesSelector</code></td>
<td>5.0 известен под названием <code>webkitMatchesSelector</code></td>
</tr>
<tr>
<td>Unprefix version</td>
<td>{{CompatChrome("34")}}</td>
<td>{{CompatGeckoDesktop("34")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>7.1</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Особенность</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Поддерживается , но имеет иное название</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("1.9.2")}} имеет название <code>mozMatchesSelector</code> [1]</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td>Unprefix version</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("34")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
<p> До появления Gecko 2.0 вызов с недопустимым селектором возвращал <code>false</code>, а не вызывал исключение...</p>
|