获取当前页面域名的几种方式:
(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三个方式获取的内容是不一样的,在选择的时候,根据自己想要的内容,使用相应的代码。