アンカー(Anchor)

目次

アンカーオブジェクト

window.document.anchors

window.document.anchors.length

window.document.anchors[n]

anchors はこのドキュメントに含まれるアンカーオブジェクト(<a name="~">~</a> に相当します)の配列、length はその個数を示します。個々のオブジェクトは anchors[n] で参照します。

window.document.anchor.name

window.document.anchor.text

<a name="○○">△△</a> において、name は ○○ の部分、text は △△ の部分に対応する文字列を示します。

window.document.anchor.x

window.document.anchor.y

アンカーが画面に表示されている位置の x 座標と y 座標を示します。Netscape Navigator でサポートされていましたが、他のブラウザではサポートされていません。