--- title: HTMLHyperlinkElementUtils.toString() slug: Web/API/HTMLAnchorElement/toString tags: - API - Experimental - HTMLHyperlinkElementUtils - Location - Method - Stringifier - URL API translation_of: Web/API/HTMLHyperlinkElementUtils/toString original_slug: Web/API/HTMLHyperlinkElementUtils/toString ---
{{ApiRef("URL API")}}
HTMLHyperlinkElementUtils.toString()
文字列化メソッドは、URL 全体を含む {{domxref("USVString")}} を返します。 これは、{{domxref("HTMLHyperlinkElementUtils.href")}} の読み取り専用バージョンです。
string = object.toString();
// <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'
{{Compat("api.HTMLHyperlinkElementUtils.toString")}}