【JavaScript】URLの解析 その2

  • このエントリーをはてなブックマークに追加

new URLを使用しないURL解析は次の通り。
このやり方も使えるな。




// 現在ページURLを参照する
console.log("location.href = "+location.href);
// 現在ページURLのプロトコルを参照する
console.log("location.protocol = "+location.protocol);
// 現在ページURLのパス名を参照する
console.log("location.pathname = "+location.pathname);
// 現在ページURLのホスト情報を参照する
console.log("location.host = "+location.host);
// 現在ページURLのポート番号を参照する
console.log("location.port = "+location.port);
// 現在ページURLのサーチ情報を参照する
console.log("location.search = "+location.search);
// 現在ページURLのハッシュ部分を参照する
console.log("location.hash = "+location.hash);

/*

http://localhost/test11/001.html?a=123ad&b=pog45#1234
にアクセスすると

location.href = http://localhost/test11/001.html?a=123ad&b=pog45#1234 
location.protocol = http:
location.pathname = /test11/001.html
location.host = localhost
location.port =
location.search = ?a=123ad&b=pog45
location.hash = #1234

*/
  • このエントリーをはてなブックマークに追加

SNSでもご購読できます。

コメントを残す

*