aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/element/hasattributes/index.html
blob: 2a53fc8db7c62821daae86d3420daad38df82e60 (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
---
title: Element.hasAttributes()
slug: Web/API/Element/hasAttributes
translation_of: Web/API/Element/hasAttributes
---
<div>{{ApiRef("DOM")}}</div>

<p>Метод <code><strong>Element</strong></code><strong><code>.hasAttributes()</code></strong> возвращает <strong>Boolean</strong> значение, указывая содержит данный элемент какие-либо атрибуты или нет.</p>

<h2 id="Синтаксис">Синтаксис</h2>

<pre>var<em><var> result</var></em> = <em><var>element</var></em>.hasAttributes();</pre>

<dl>
 <dt><code>result</code></dt>
 <dd>содержит возвращаемое значение <code>true</code> или <code>false</code>.</dd>
</dl>

<h2 id="Example">Пример</h2>

<pre class="brush:js">var foo = document.getElementById("foo");
if (foo.hasAttributes()) {
    // do something with 'foo.attributes'
}
</pre>

<h2 id="Polyfill">Polyfill</h2>

<pre class="brush:js">;(function(prototype) {
    prototype.hasAttributes = prototype.hasAttributes || function() {
        return (this.attributes.length &gt; 0);
    }
})(Element.prototype);
</pre>

<h2 id="Спецификация">Спецификация</h2>

{{Specifications}}

<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>

<p>{{Compat}}</p>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>{{domxref("Element.attributes")}}</li>
 <li>{{domxref("Element.hasAttribute()")}}</li>
</ul>