js获取当前域名

前端开发   发布日期:2023年05月04日   浏览次数:271
<script language="javascript">
//获取域名
host = window.location.host;
host2=document.domain; 

//获取页面完整地址
url = window.location.href;

document.write("<br>host="+host)
document.write("<br>host2="+host2)
document.write("<br>url="+url)
</script>


以上就是js获取当前域名的详细内容,更多关于js获取当前域名的资料请关注九品源码其它相关文章!