blob: 54ba0dee57b501a34dba5fef80332dd74be93835 (
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
|
---
title: DOMString
slug: Web/API/DOMString
translation_of: Web/API/DOMString
---
<div>{{APIRef("DOM")}}</div>
<p><strong><code>DOMString</code></strong> є 16-бітовою послідовністю безнакових цілих, типово інтерпретуєтьсят як UTF-16 <a href="http://www.unicode.org/glossary/#code_unit">code units</a>. Це точно відповідає до JavaScript <a href="https://tc39.es/ecma262/#sec-ecmascript-language-types-string-type">примітивному типу String</a>. Коли <code>DOMString</code> застосовється у JavaScript, це напряму відображує відповідну {{jsxref("String")}}.</p>
<p>When a Web API accepts a <code>DOMString</code>, the value provided will be stringified, using the <code><a href="https://tc39.es/ecma262/#sec-tostring">ToString</a></code> abstract operation. (For types other than Symbol, this has the same behavior as the {{jsxref("String/String", "String()")}} function.)</p>
<p>Certain Web APIs accepting a <code>DOMString</code> have an additional legacy behavior, where passing {{jsxref("null")}} stringifies to the empty string instead of the usual <code>"null"</code>.</p>
<h2 id="Специфікації">Специфікації</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('WebIDL', '#idl-DOMString', 'DOMString')}}</td>
<td>{{Spec2('WebIDL')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('WebIDL', '#es-DOMString')}}</td>
<td>{{Spec2('WebIDL')}}</td>
<td>This defines how JavaScript values are converted to <code>DOMString</code> and vice versa.</td>
</tr>
</tbody>
</table>
<h2 id="Також_дивися">Також дивися:</h2>
<ul>
<li>JavaScript {{jsxref("String")}}</li>
<li>{{domxref("USVString")}}</li>
<li>{{domxref("CSSOMString")}}</li>
<li><a href="/en-US/docs/Web/API/DOMString/Binary">Binary strings</a></li>
</ul>
|