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
|
---
title: HTMLLinkElement
slug: Web/API/HTMLLinkElement
translation_of: Web/API/HTMLLinkElement
---
<div>
<div>{{ APIRef("HTML DOM") }}</div>
</div>
<p>Интерфейс <strong><code>HTMLLinkElement</code></strong> представляет справочную информацию для внешних ресурсов и отношение этих ресурсов к документу и наоборот (соответствует элементу <code><a href="/ru/docs/Web/HTML/Element/link"><link></a></code>; не путать с <code><a href="/ru/docs/Web/HTML/Element/a"><a></a></code>, который представлен элементом <code><a href="/ru/docs/Web/API/HTMLAnchorElement">HTMLAnchorElement</a></code>). Этот объект наследует все свойства и методы интерфейса {{domxref("HTMLElement")}}.</p>
<p>{{InheritanceDiagram(600, 120)}}</p>
<h2 id="Свойства">Свойства</h2>
<p><em>Наследует свойства от своего родителя, {{domxref("HTMLElement")}}, и {{domxref("LinkStyle")}}.</em></p>
<dl>
<dt></dt>
<dt>{{domxref("HTMLLinkElement.as")}}</dt>
<dd>Это {{domxref("DOMString")}} представляющий тип контента загружаемый по HTML ссылке.</dd>
<dt>{{domxref("HTMLLinkElement.crossOrigin")}} {{experimental_inline}}</dt>
<dd>Is a {{domxref("DOMString")}} that corresponds to the CORS setting for this link element. See <a href="/ru/docs/HTML/CORS_settings_attributes" title="HTML/CORS settings attributes">CORS settings attributes</a> for details.</dd>
<dt>{{domxref("HTMLLinkElement.disabled")}}</dt>
<dd>Is a <code>Boolean</code> which represents whether the link is disabled; currently only used with style sheet links.</dd>
<dt>{{domxref("HTMLLinkElement.href")}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the URI for the target resource.</dd>
<dt>{{domxref("HTMLLinkElement.hreflang")}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the language code for the linked resource.</dd>
<dt>{{domxref("HTMLLinkElement.media")}}</dt>
<dd>Is a {{domxref("DOMString")}} representing a list of one or more media formats to which the resource applies.</dd>
<dt>{{domxref("HTMLLinkElement.referrerPolicy")}} {{experimental_inline}}</dt>
<dd>Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("referrerpolicy", "link")}} HTML attribute indicating which referrer to use.</dd>
<dt>{{domxref("HTMLLinkElement.rel")}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the forward relationship of the linked resource from the document to the resource.</dd>
<dt>{{domxref("HTMLLinkElement.relList")}} {{readonlyInline}}</dt>
<dd>Is a {{domxref("DOMTokenList")}} that reflects the {{htmlattrxref("rel", "link")}} HTML attribute, as a list of tokens.</dd>
<dt>{{domxref("HTMLLinkElement.sizes")}} {{readonlyInline}}</dt>
<dd>Is a {{domxref("DOMSettableTokenList")}} that reflects the {{htmlattrxref("sizes", "link")}} HTML attribute, as a list of tokens.</dd>
<dt>{{domxref("LinkStyle.sheet")}} {{readonlyInline}}</dt>
<dd>Returns the {{domxref("StyleSheet")}} object associated with the given element, or <code>null</code> if there is none.</dd>
<dt>{{domxref("HTMLLinkElement.type")}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the MIME type of the linked resource.</dd>
</dl>
<h3 id="Устаревшие_свойства">Устаревшие свойства</h3>
<dl>
<dt>{{domxref("HTMLLinkElement.charset")}} {{obsolete_inline}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the character encoding for the target resource.</dd>
<dt>{{domxref("HTMLLinkElement.rev")}} {{obsolete_inline}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the reverse relationship of the linked resource from the resource to the document.
<div class="note"><strong>Примечание</strong>: Currently the W3C HTML 5.2 spec states that <code>rev</code> is no longer obsolete, whereas the WHATWG living standard still has it labeled obsolete. Until this discrepancy is resolved, you should still assume it is obsolete.</div>
</dd>
<dt>{{domxref("HTMLLinkElement.target")}} {{obsolete_inline}}</dt>
<dd>Is a {{domxref("DOMString")}} representing the name of the target frame to which the resource applies.</dd>
</dl>
<h2 id="Методы">Методы</h2>
<p><em>Не имеет методов; наследует методы от своего родителя, {{domxref("HTMLElement")}}</em><em>, и {{domxref("LinkStyle")}}.</em></p>
<h2 id="Спецификации">Спецификации</h2>
{{Specifications}}
<h2 id="Совместимость_браузера">Совместимость браузера</h2>
<div>
<p>{{Compat("api.HTMLLinkElement")}}</p>
</div>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>Элемент HTML, реализующий этот интерфейс: {{HTMLElement("link")}}.</li>
</ul>
|