<script>
function GetLocalIPAddress()
{
var obj = null
var rslt = ""
try
{
obj = new ActiveXObject("rcbdyctl.Setting")
rslt = obj.GetIPAddress
obj = null
}
catch(e)
{
//异常发生
}
return rslt
}
document.write("你的IP是:" + GetLocalIPAddress())
//-->
</script>
要使HTML获得路径,肯定是要用到JavaScript,获得方式有以下几种方式 获得方式都是 window.location. = this.location.在后边加入要获得的方式,这里我就以this.location.方式说一下 加入当前页面的全路径是 http://127.0.0.1:8020/login/getUrl.html?__hbt=1523851552803另外还有 url = window.location.hash/* 获取锚点(“#”后面的分段) / alert(url)/ #test?name=test */