最新のWeb開発のチュートリアル
 

場所のhrefプロパティ

場所オブジェクトリファレンス 場所オブジェクト

(現在のページの)全体のURLを返します:

var x = location.href;

xの結果は次のようになります。

»それを自分で試してみてください

詳細以下の例「自分にそれを試してみてください」。


定義と使用法

HREFプロパティセットまたは現在のページのURL全体を返します。


ブラウザのサポート

プロパティ
href はい はい はい はい はい

構文

hrefのプロパティを返します:

location.href

HREFプロパティを設定します。

location.href= URL

プロパティ値

Value Type Description
URL String Specifies the URL of the link.

Possible values:

  • An absolute URL - points to another web site (like location.href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like location.href="default.htm")
  • An anchor URL - points to an anchor within a page (like location.href="#top")
  • A new protocol - specifies a different protocol (like location.href="ftp://someftpserver.com", location.href="mailto:[email protected]" or location.href="file://host/path/example.txt")

技術的詳細

戻り値: (http://をのような)プロトコルを含むページのURL全体を表すString、

例

その他の例

他のWebサイトを指すようにhrefの値を設定します。

location.href = "http://www.cnn.com";
»それを自分で試してみてください

ページ内のアンカーを指すようにhrefの値を設定します。

location.href = "#top";
»それを自分で試してみてください

(開き、新しい電子メールメッセージを作成します)Eメールアドレスを指すようにhrefの値を設定します。

location.href = "mailto:[email protected]";
»それを自分で試してみてください

場所オブジェクトリファレンス 場所オブジェクト