aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/orphaned/web/api
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-23 15:56:25 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-23 15:56:25 +0100
commit05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f (patch)
tree3a996b21e1eb1ed852ab792b9752648783a87a75 /files/zh-cn/orphaned/web/api
parent10701ffef1cb57f06970990b9b7086ea7f24a019 (diff)
downloadtranslated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.tar.gz
translated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.tar.bz2
translated-content-05b2650717b84d199f6ebd5df8a8f9d1e3b23f3f.zip
sync: move
Diffstat (limited to 'files/zh-cn/orphaned/web/api')
-rw-r--r--files/zh-cn/orphaned/web/api/htmlhyperlinkelementutils/index.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/files/zh-cn/orphaned/web/api/htmlhyperlinkelementutils/index.html b/files/zh-cn/orphaned/web/api/htmlhyperlinkelementutils/index.html
new file mode 100644
index 0000000000..d6d93674e3
--- /dev/null
+++ b/files/zh-cn/orphaned/web/api/htmlhyperlinkelementutils/index.html
@@ -0,0 +1,84 @@
+---
+title: URLUtils
+slug: Web/API/HTMLHyperlinkElementUtils
+translation_of: Web/API/HTMLHyperlinkElementUtils
+original_slug: Web/API/URLUtils
+---
+<p>{{ApiRef("URL API")}}{{SeeCompatTable}}</p>
+
+<p>The <strong><code>HTMLHyperlinkElementUtils</code></strong> mixin defines utility methods and properties to work with {{domxref("HTMLAnchorElement")}} and {{domxref("HTMLAreaElement")}}. These utilities allow to deal with common features like URLs.</p>
+
+<p>There are no objects of this type, but several objects {{domxref("HTMLAnchorElement")}} and {{domxref("HTMLAreaElement")}} implement it.</p>
+
+<h2 id="属性">属性</h2>
+
+<div class="note">
+<p><strong>注意:</strong>This interface doesn't inherit any property.</p>
+</div>
+
+<dl>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.href")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the whole URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.protocol")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the protocol scheme of the URL, including the final <code>':'</code>.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.host")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the host, that is the <em>hostname</em>, and then, if the <em>port</em> of the URL is not empty (which can happen because it was not specified or because it was specified to be the default port of the URL's scheme), a <code>':'</code>, and the <em>port</em> of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.hostname")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the domain of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.port")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the port number of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.pathname")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing an initial <code>'/'</code> followed by the path of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.search")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing a <code>'?'</code> followed by the parameters of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.hash")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing a <code>'#'</code> followed by the fragment identifier of the URL.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.username")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the username specified before the domain name.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.password")}}</dt>
+ <dd>This is a {{domxref("USVString")}} containing the password specified before the domain name.</dd>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.origin")}} {{readonlyInline}}</dt>
+ <dd>This returns a {{domxref("USVString")}} containing the origin of the URL (that is its scheme, its domain and its port).</dd>
+</dl>
+
+<h2 id="方法">方法</h2>
+
+<div class="note">
+<p><strong>注意:</strong>This interface doesn't inherit any method.</p>
+</div>
+
+<dl>
+ <dt>{{domxref("HTMLHyperlinkElementUtils.toString()")}}</dt>
+ <dd>This returns a {{domxref("USVString")}} containing the whole URL. It is a synonym for {{domxref("HTMLHyperlinkElementUtils.href")}}, though it can't be used to modify the value.</dd>
+</dl>
+
+<h2 id="规范">规范</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">规范</th>
+ <th scope="col">状态</th>
+ <th scope="col">备注</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#htmlhyperlinkelementutils', 'HTMLHyperlinkElementUtils')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>Initial definition</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+
+
+<p>{{Compat("api.HTMLHyperlinkElementUtils")}}</p>
+
+<h2 id="参见">参见</h2>
+
+<ul>
+ <li>Interfaces implementing this one: {{domxref("HTMLAnchorElement")}}, {{domxref("HTMLAreaElement")}}</li>
+</ul>