代码如下
//获取当前域名
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
)
<input type="text" style=" width:300px" name="new" id=new">
<script>var nurl = document.referrer//来源url
document.URL //获取当前域名
document.title//获取当前页面标题
document.getElementById('new').innerHTML = nurl</script>我是爱分享资源网的站长,如果你觉得不错请访问下我的网站,谢谢了!
方法 步骤如下:
打开开发工具。比如editplus、dw等
新建一个html文件,写入脚本标签
<script language="javascript" type="text/javascript">
<!--
//-->
</script>
js代码必须写入好改标签中。
3.想要获取web的主机名和端口号就必须使用window下的location对象的属性才行的。
4.获取主机域名:
location.hostname
获取端口号
location.port
具体实现的代码:
function f1(){
alert(window.location.hostname)
alert(window.location.port)
}