DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 兩種js獲取當前域名代碼
兩種js獲取當前域名代碼
編輯:JavaScript綜合知識     

 今天給各位朋友介紹兩種js獲取當前域名

 代碼如下
//獲取當前域名

1、window.location.host;
2、document.domain;

//獲取當前頁面地址

url = window.location.href;
 

例子

 代碼如下
<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="+ur(www.45it.net)l)
</script>
 

補充:

獲取當前域名信息

 代碼如下
thisTLoc = top.location.href;
thisPLoc = parent.document.location;
thisTHost = top.location.hostname;
thisHost = location.hostname;
strwrite = ” thisTLoc: [" + thisTLoc + "]”
strwrite += ” thisPLoc: [" + thisPLoc + "]”
strwrite += ” thisTHost: [" + thisTHost + "]”
strwrite += ” thisHost: [" + thisHost + "]”
document.write( strwrite );

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved