blob: 1c7e498a9b036d646ad064364c484b0117ec2876 (
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
|
---
title: HTMLHyperlinkElementUtils.protocol
slug: Web/API/HTMLAnchorElement/protocol
tags:
- API
- Experimental
- HTMLHyperlinkElementUtils
- Property
- URL API
translation_of: Web/API/HTMLHyperlinkElementUtils/protocol
original_slug: Web/API/HTMLHyperlinkElementUtils/protocol
---
<p>{{ApiRef("URL API")}}</p>
<p>Свойство <strong><code>HTMLHyperlinkElementUtils.protocol</code></strong> <span class="st">–</span> это {{domxref("USVString")}}, содержащий протокол URL включая <code>':'</code> в конце.</p>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="syntaxbox"><em>string</em> = <em>object</em>.protocol;
<em>object</em>.protocol = <em>string</em>;
</pre>
<h2 id="Примеры">Примеры</h2>
<pre class="brush: js">// Допустим, что документ содержит элемент <a id="myAnchor" href="https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils.protocol">
var anchor = document.getElementByID("myAnchor");
var result = anchor.protocol; // Вернёт: 'https:'
</pre>
<h2 id="Спецификации">Спецификации</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-hyperlink-protocol', 'HTMLHyperlinkElementUtils.protocol')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Изначальное определение.</td>
</tr>
</tbody>
</table>
<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>
<p>{{Compat("api.HTMLAnchorElement.protocol")}}</p>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>Миксин {{domxref("HTMLHyperlinkElementUtils")}}, к которому принадлежит это свойство.</li>
</ul>
|