您的位置:首页 > 其它

根据IP地址获取所在城市

2012-02-21 11:10 232 查看
<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title></title>

<script src="js/jquery-1.7.min.js" type="text/javascript"></script>

<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js" type="text/ecmascript"></script>

<script type="text/javascript">

function getIpPlace() {

alert(remote_ip_info["province"] + "省" + ',' + remote_ip_info["city"] + "市")

} </script>

</head>

<body>

<form id="form1" runat="server">

<div>

<input id="Button1" type="button" value="根据IP地址获取所在城市" onclick="getIpPlace();" />

</div>

</form>

</body>

</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: