diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/usvstring | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/usvstring')
-rw-r--r-- | files/zh-cn/web/api/usvstring/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/usvstring/index.html b/files/zh-cn/web/api/usvstring/index.html new file mode 100644 index 0000000000..4500e1e2e2 --- /dev/null +++ b/files/zh-cn/web/api/usvstring/index.html @@ -0,0 +1,47 @@ +--- +title: USVString +slug: Web/API/USVString +tags: + - USVString + - unicode scalar values +translation_of: Web/API/USVString +--- +<p>{{APIRef("DOM")}}</p> + +<p><strong><code>USVString</code></strong> 对应 unicode 标量值的所有可能序列的集合。在JavaScript中返回时, <code>USVString</code> 映射到 {{JSxRef("String")}} 。它通常仅用于执行文本处理的 API,需要一串 unicode 标量值才能进行操作。除了不允许不成对的代理代码之外, <code>USVString</code> 等同于 {{DOMxRef("DOMString")}} 。 <code>USVString</code> 中存在的不成对的代理代码由浏览器转换为 Unicode '替换字符' <code>U+FFFD</code>, (�).</p> + +<p> </p> + +<p>译注:</p> + +<p>Unicode 标量值( Unicode scalar values ):字符的代号。</p> + +<p>不成对的代理代码( Unpaired surrogate codepoints ):高代理代码后面没有低代理代码,或者低代理代码之前没有高代理代码。</p> + +<p> </p> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName("WebIDL", "#idl-USVString", "USVString")}}</td> + <td>{{Spec2("WebIDL")}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="另见">另见</h2> + +<ul> + <li>{{JSxRef("String")}}</li> + <li>{{DOMxRef("DOMString")}}</li> + <li>{{DOMxRef("CSSOMString")}}</li> + <li><a href="/en-US/docs/Web/API/DOMString/Binary">Binary strings</a></li> +</ul> |