2
我是jQuery
的新手,基於JSFiddle,我寫了一個腳本來定位自己。這裏是我的腳本:爲什麼我無法從此jsonp響應中獲取位置?
$(document).ready(function(){
$.get("http://ipinfo.io", function (response) {
$("#ip").html("" + response.ip);
$("#hostname").html("" + response.hostname);
$("#city").html("" + response.city);
$("#region").html("" + response.region);
$("#country").html("" + response.country);
$("location").html("" + response.loc);
$("#organisation").html("" + response.org);
},"jsonp");
});
除了我無法獲取位置以外,一切順利。 In the JSFiddle,但是,該位置可以恢復。
如何檢索位置座標? :)
更新你錯過了在'$( 「位置」)一個''##。HTML()' – fiction
@fiction現在,我想拍我自己x( –
它發生在我身上,不要擔心:) – fiction