links オブジェクト

説 明: リンク <A HREF=""></A> の参照を行うオブジェクト。
     リンクは links 配列として、順番に割り当てられる。

書 式:
  document.links[n].hash = AnchorName
document.links[n].hostname = HostName
document.links[n].port = Port
document.links[n].host = HostName
document.links[n].pathname = Path
document.links[n].protocol = Protocol
document.links[n].search = Str
document.link[n].target = Target
Value = document.links.length
URL = document.links[n].href
AnchorName = document.links[n].hash
HostName = document.links[n].hostname
Port = document.links[n].port
HostName = document.links[n].host
Path = document.links[i].pathname
Protocol = document.links[i].protocol
Str = document.links[n].search
Target = document.link[n].target
アンカーネームを設定
ホストネームを設定
ポートを設定
ホスト、ポートを設定
パスを設定
プロトコルを設定
受け渡す文字列を設定
ターゲットを指定
リンク数を取得
URL を取得
アンカーネームを取得
ホストネームを取得
ポートを取得
ホスト、ポートを取得
パスを取得
プロトコルを取得
受け渡す文字列を取得
ターゲットを取得

使用例:
  <A HREF="#anchor">アンカー</A>    
<A HREF="../../index.html">Venom's HOME PAGE</A><BR><BR>
<SCRIPT TYPE="text/JavaScript">
<!--
w = open( "", "newwindow" );
window.focus();
document.links[1].target = "newwindow";
document.links[1].search = "?search=hello";
document.write( "Length  : ", document.links.length, "<BR>" );
document.write( "URL     : ", document.links[1].href, "<BR>" );
document.write( "Hash    : ", document.links[0].hash, "<BR>" );
document.write( "HostName: ", document.links[1].hostname, "<BR>" );
document.write( "Port    : ", document.links[1].port, "<BR>" );
document.write( "Host    : ", document.links[1].host, "<BR>" );
document.write( "PathName: ", document.links[1].pathname, "<BR>" );
document.write( "Protocol: ", document.links[1].protocol, "<BR>" );
//-->
</SCRIPT>

実 行:

アンカー     Venom's HOME PAGE