欢迎来到PHP菜鸟博客    登录
我的订单    |  会员中心  
     
就算这个世道烂成一堆粪坑,那也不是你吃屎的理由!!
购物车

首页 > 网站前端 > 产品详情

js获取当前域名

 

9999.00    (库存:有货)

已超出库存数量!

  • 详情

js代码:


<script language="javascript">
//获取域名
host1 = window.location.host;
host2=document.domain;

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

document.write("<br>host1="+host1)
document.write("<br>host2="+host2)
document.write("<br>host3="+host3)
</script>


输入结果:


host=localhost
host2=localhost
url=http://localhost/test/wlphp.html