1. ホーム
  2. javascript

[解決済み] jquery、ドメイン、URLの取得

2022-05-06 01:24:22

質問

jqueryでドメイン名を取得する方法を教えてください。

解決方法は?

jQueryは必要ありません。シンプルなjavascriptで十分です。

alert(document.domain);

実際の動作をご覧ください。

console.log("Output;");  
console.log(location.hostname);
console.log(document.domain);
alert(window.location.hostname)

console.log("document.URL : "+document.URL);
console.log("document.location.href : "+document.location.href);
console.log("document.location.origin : "+document.location.origin);
console.log("document.location.hostname : "+document.location.hostname);
console.log("document.location.host : "+document.location.host);
console.log("document.location.pathname : "+document.location.pathname);

さらにドメインに関連する値については、以下のプロパティをチェックしてください。 window.location をオンラインにすることができます。を見つけることができるかもしれません。 location.host とは内容が異なる可能性があるため、より良い選択肢であると言えます。 document.domain . 例えば、URLの http://192.168.1.80:8080 にはipaddressだけが入ります。 document.domain には、IPアドレスとポート番号の両方が含まれています。 location.host .