HTMLAnchorElement: target プロパティ
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.
target
は HTMLAnchorElement
インターフェイスのプロパティで、リンク先のリソースを表示する場所を示す文字列です。
値
対象とするものを表す文字列。その値は次のいずれかになります。
<frame>
の名前。- 次の特定の値によるキーワード、
_blank
,_self
,_parent
,_top
のいずれか。
例
html
<a href="www.example1.com" class="link1" target="_blank">example1</a>
js
const link = document.querySelector(".link1");
console.log(link.target); // output: "_blank"
仕様書
Specification |
---|
HTML Standard # dom-a-target |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
HTMLBaseElement.target
プロパティHTMLFormElement.target
プロパティHTMLAreaElement.target
プロパティ