wb.Url = new Uri("xxx.html", UriKind.Relative)
UriKind 是Uri的类型,标明相对或绝对路径,绝对路径要标注http://
下面代码会显示你所有的IP如果有两个IP就会alert2次
<html>
<head>
<script language="JavaScript">
function GetLocalIPAddr(){
var oSetting = null
var ip = null
try{
oSetting = new ActiveXObject("rcbdyctl.Setting")
ip = oSetting.GetIPAddress
alert(ip)
if (ip.length == 0){
return "没有连接到Internet"
}
oSetting = null
}catch(e){
return ip
}
return ip
}
alert(GetLocalIPAddr())
</script>
</head>
<body>
</body>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)