收藏自用的免费的本地IP查询API接口,都是大网站的接口稳定速度快。
搜狐本机IP查询1:http://pv.sohu.com/cityJSON
搜狐本机IP查询2:http://txt.go.sohu.com/ip/soip
搜狐本机IP查询(指定编码):http://pv.sohu.com/cityjson?ie=utf-8
太平洋电脑网本机IP查询:http://whois.pconline.com.cn/ipJson.jsp?callback=hello
太平洋电脑网IP查询:http://whois.pconline.com.cn
JS接口使用代码案列
以下为案列代码,具体需要自行修改优化,我的站长站只给大家调用出来。
$.ajax({ type: "POST", dataType: "JSON", url: "http://pv.sohu.com/cityjson", data:{url:ur}, success:function(data,status){ console.log(data) }, error:function(XMLHttpRequest,textStatus,errorThrown){ console.log(json_decode.msg) } });
JQuery的方法,记得引入JQuery库。