//URLは、http://hoge.com/fuga.html?id=5 #title-2

//URLの取得
var url = location.href;
console.log(url);

//出力は、http://hoge.com/fuga.html?id=5 #title-2



//ホストの取得
var url = location.host;
console.log(url);

//出力は、hoge.com



//パスの取得
var url = location.pathname;
console.log(url);

//出力は、/fuga.html



//パラメータの取得
var url = location.search;
console.log(url);

//出力は、?id=5



//アンカーの取得
var url = location.hash;
console.log(url);

//出力は、$title-2


▲上に戻る