发布时间:2023-09-07 文章分类:WordPress 教程 投稿人:樱花 字号: 默认 | | 超大 打印

获取当前页面域名的几种方式:

(1)方法一:

<script type="text/javascript">
hname=window.location.host;
function disp_alert()
{alert(hname);}
</script>

当前页面的运行结果为:

www.yuucn.com

(2)方法二:

<script type="text/javascript">
hname=document.domain;
function disp_alert()
{alert(hname);}
</script>

当前页面的运行结果为:

yuucn.com

(3)方法三:

<script type="text/javascript">
hname=window.location.href;
function disp_alert()
{alert(hname);}
</script>

当前页面的运行结果为:

https://www.yuucn.com/a/1594551.html

总结:
window.location.host、document.domain、window.location.href三个方式获取的内容是不一样的,在选择的时候,根据自己想要的内容,使用相应的代码。