js根据ip地址获取城市地理位置】的更多相关文章

一.使用js根据ip获取地址位置 <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script><script> var cityCode=returnCitySN.cid; document.write('<hr><br><h1> 老铁位置:'+JSON.stringify(returnCitySN)+'</h1>');</script&…
根据现有IP地址获取其地理位置(省份,城市等)的方法 function GetIpLookup($ip = ''){ if(empty($ip)){ return '请输入IP地址'; } $res = @file_get_contents('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=' . $ip); if(empty($res)){ return false; } $jsonMatches = array(…
腾讯新浪通过IP地址获取当前地理位置(省份)的接口  腾讯的接口是 ,返回数组 http://fw.qq.com/ipaddress 返回值 var IPData = new Array("61.135.152.194","","北京市","");  新浪的接口 : http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js 多地域测试方法:http://int.d…
腾讯的接口是 ,返回数组 http://fw.qq.com/ipaddress 返回值 var IPData = new Array("61.135.152.194","","北京市","");   新浪的接口 : http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js  多地域测试方法:http://int.dpool.sina.com.cn/iplookup…
1.  使用接口的方式: 这种方式是相对稳定,而且提供的数据相对稳定,提供接口的地方很多,大家可以参照 http://www.hujuntao.com/api/the-ip-address-api-and-call-the-interface-method.html 不一一讲解,只讲解一下新浪提供的接口: 新浪接口地址:http://int.dpool.sina.com.cn/iplookup/iplookup.php 参数有两个:format和ip 1)       IP:不传入ip值时默认为…
using System; using System.IO; using System.Net; using System.Text; using System.Web.Script.Serialization; namespace IpUtils { public class IpDetail { public String Ret { get; set; } public String Start { get; set; } public String End { get; set; } p…
腾讯的接口是 ,返回数组 http://fw.qq.com/ipaddress 返回值 var IPData = new Array("61.135.152.194","","北京市",""); 新浪的接口 : http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js 多地域测试方法:http://int.dpool.sina.com.cn/iplookup/ip…
var ip=context.Request.UserHostAddress; string url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?ip=" + ip; WebClient MyWebClient = new WebClient(); MyWebClient.Credentials = CredentialCache.DefaultCredentials;//获取或设置用于向Internet资源的请求进行身份…
var province = '' ;var city = '' ;jQuery.getScript("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js",function(){     province = remote_ip_info["province"];     city = remote_ip_info["city"];      alert(city)}) ;…
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title>通过IP获取当前所在城市</title><script src="js/jquery-1.8.1.js" type="text/javascript"></script><script src="ht…