blob: 1edb61e862145260178c9a88a0dd6be2fcf96f0c (
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
|
---
title: HTMLHyperlinkElementUtils.toString()
slug: Web/API/HTMLHyperlinkElementUtils/toString
tags:
- API
- Experimental
- HTMLHyperlinkElementUtils
- Location
- Method
- Stringifier
- URL API
translation_of: Web/API/HTMLHyperlinkElementUtils/toString
---
<p>{{ApiRef("URL API")}}</p>
<p><span class="seoSummary"><strong><code>HTMLHyperlinkElementUtils.toString()</code></strong> 文字列化メソッドは、URL 全体を含む {{domxref("USVString")}} を返します。 これは、{{domxref("HTMLHyperlinkElementUtils.href")}} の読み取り専用バージョンです。</span></p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><em>string</em> = <em>object</em>.toString();</pre>
<h2 id="Examples" name="Examples">例</h2>
<pre class="brush: js">// <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/HTMLHyperlinkElementUtils/toString"> 要素がドキュメントにあるとします
var anchor = document.getElementById("myAnchor");
var result = anchor.toString(); // 戻り値: 'https://developer.mozilla.org/en-US/docs/HTMLHyperlinkElementUtils/toString'
</pre>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.HTMLHyperlinkElementUtils.toString")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("HTMLHyperlinkElementUtils")}} ミックスインに属します。</li>
</ul>
|