js獲取ip,瀏覽器資訊

瓜瓜東西發表於2014-09-12
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript"
href="<%=request.getContextPath()%>/js/jquery-1.9.1.js"></script>
<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
<script type="text/javascript">
function msg() {
alert(returnCitySN["cip"] + ',' + returnCitySN["cname"]);
alert(navigator.userAgent);
alert(navigator.platform);
alert(navigator.appName);
}
</script>
<script type="text/javascript" src="http://counter.sina.com.cn/ip/" charset="gb2312"></script>       <!--獲取介面資料,注意charset -->  
<script type="text/javascript">   
document.writeln("IP地址:"+ILData[0]+"<br />");             //輸出介面資料中的IP地址   
document.writeln("地址型別:"+ILData[1]+"<br />");         //輸出介面資料中的IP地址的型別   
document.writeln("地址型別:"+ILData[2]+"<br />");         //輸出介面資料中的IP地址的省市  
document.writeln("地址型別:"+ILData[3]+"<br />");         //輸出介面資料中的IP地址的  
document.writeln("地址型別:"+ILData[4]+"<br />");         //輸出介面資料中的IP地址的運營商  
</script>


</head>
<body>
<h1>歡迎你!!!</h1>
<h3>抓取訊息</h3>
<h3>
<a href="<%=request.getContextPath()%>/accessuser/msg">測試獲取資訊</a>
</h3>
<h3><label onclick="msg()">通過js獲取資訊</label></h3>
</body>
</html>

相關文章