如:在端页面通过js获取接口数据,使用jsonp跳过同源限制,查询手机号归属地
$.ajax({ type:"get",url:"http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel="+telVal,dataType:"jsonp",jsonp:"callback",async:true,success:function(response,status,xhr){ console.log(response); $("#telHome").html(response.province); } });原文链接:https://www.f2er.com/json/289206.html