js获取手机ip

在网上各种查找,最后决定调用搜狐接口

搜狐IP地址查询接口(默认GBK):http://pv.sohu.com/cityjson
搜狐IP地址查询接口(可设置编码):http://pv.sohu.com/cityjson?ie=utf-8

代码中获取


<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

        <title>获取ip地址title>
    head>
    <body >

    body>
    <script src="http://pv.sohu.com/cityjson?ie=utf-8">script>
    <script>
    //浏览器返回结果:(前提是需要有网络)
    //var returnCitySN = {"cip": "14.153.20.119", "cid": "440300", "cname": "广东省深圳市"};
        console.log(returnCitySN.cip);

    script>

html>

你可能感兴趣的:(js)