JavaScript ウィンドウの位置
window.location オブジェクトは、現在のページのアドレス (URL) を取得し、ブラウザを新しいページにリダイレクトするために使用されます。
Window Location
window.location オブジェクトは、window プレフィックスを使用せずに記述することができます。 いくつかの例:
いくつかの例:
location.hostname は Web ホストのドメイン名を返します
location.pathname は現在のページのパスとファイル名を返します
location.port はポートを返しますWeb ホストの URL (80 または 443)
location.protocol 使用される Web プロトコル (http:// または https://) を返します
Window Location Href
location.href プロパティは、次の URL を返します現在のページ。
Instance
は、(現在のページの) URL 全体を返します:
<script>
document.write(location.href);
</script>
document.write(location.href);
</script>
上記のコードの出力は次のとおりです。 :
http://www.php.cn/js/js-window-location.html
Window Location Pathname
location.pathname プロパティは、URL のパス名を返します。
Instance
現在の URL のパス名を返します:
<script>
document.write(location.pathname);
</script>
document.write(location.pathname);
</script>
上記のコードの出力は次のとおりです:
/js /js-window-location.html
Window Location Assign
location.assign() メソッドは、新しいドキュメントを読み込みます。
インスタンス
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <head> <script> function newDoc(){ window.location.assign("http://www.php.cn") } </script> </head> <body> <input type="button" value="加载新文档" onclick="newDoc()"> </body> </html>
インスタンスの実行 »
「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します