JavaScriptのロケーションオブジェクトから簡単に取得できます。
たとえば、このページのURLは次のとおりです。
http://www.stackoverflow.com/questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc
次に、次の場所オブジェクトのプロパティを使用して正確なドメインを取得できます。
location.host = "www.stackoverflow.com"
location.protocol= "http:"
あなたは完全なドメインを作ることができます:
location.protocol + "//" + location.host
この例ではどちらが返されますか http://www.stackoverflow.com
これに加えて、完全なURLと、場所オブジェクトの他のプロパティを使用したパスも取得できます。
location.href= "http://www.stackoverflow.com/questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc"
location.pathname= "questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc"