gpt4 book ai didi

javascript - jquery,域,获取 URL

转载 作者:IT老高 更新时间:2023-10-28 13:20:16 26 4
gpt4 key购买 nike

如何使用 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 将只有 document.domain 中的 ipaddress,但 location 中的 ipaddress 和端口号.host.

关于javascript - jquery,域,获取 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2300771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com