URL全体の取得
var url = location.href ;
console.log(url);
// http://hogehoge.com/fuga.html
var URL = document.URL;
console.log(URL);
// http://hogehoge.com/fuga.html
プロトコルのみの取得
var protocol = location.protocol ;
console.log(protocol);
// http:
ドメインのみの取得
var host = location.hostname ;
console.log(host);
// hogehoge.com
パスのみの取得
var path = location.pathname ;
console.log(path);
// /fuga.html
URLにhogeが含まれていたら処理を実行する
if(document.URL.match("/hoge/")) {
$('body').addClass('hoge');
}