HTMLAreaElement: toString() メソッド
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
HTMLAreaElement.toString()
は文字列化メソッドで、 URL 全体の入った文字列を返します。 これは、 HTMLAreaElement.href
の読み取り専用バージョンです。
構文
js
toString()
引数
なし。
返値
この要素の完全な URL の入った文字列です。
例
エリア要素で toString を呼び出す
js
// <area id="myArea" href="/ja/docs/HTMLAreaElement"> 要素が文書にあったとします
const area = document.getElementById("myArea");
area.toString(); // 'https://developer.mozilla.org/ja/docs/HTMLAreaElement' を返す
仕様書
Specification |
---|
HTML Standard # dom-hyperlink-href-dev |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- 所属先の
HTMLAreaElement
インターフェイス