js获取当前域名
<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>
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Dev!