可能重複:
Javascript/PHP can I get GPS location and send it to me?使用Javascript或PHP獲取位置並將其發送給我?
確定這裏就是我想:
我需要的東西就像一個Javascript或PHP腳本從訪問者獲得GPS位置,然後祕密發送給我(我不會使用這個不好的,這是一個網站,防止我的iPhone被盜)
我想,如果一個小偷打開的網站(我將webclip,命名Safari和給Safari瀏覽器圖標)我自動獲得他的位置,他的重定向到Google或別的東西
所以基本上是這樣的:
navigator.geolocation.getCurrentPosition(GetLocation);
function GetLocation(location) {
//Some script that sends the location secretly to me
}
{
windows.location="http://google.com";
}
你能幫助我嗎? PS:我不會使用這個不好的,因爲它只會在我的iPhone上,我知道那裏有應用程序,但那些花錢,我不知道它是否值得。
UPDATE:
我發現:我不知道它確實,但我想它需要的位置,並將其發送到location.php ???
function ajaxFunction() {
$.ajax({
url:'location.php',
type:'POST',
data:'lat='+lat+'&long='+long,
success:function(d){
console.log(d);
},
error(w,t,f){
console.log(w+' '+t+' '+f);
}
});
}
現在如何讓它重定向到谷歌並把它放在我的網站上?
爲什麼你會發布兩次相同的問題? http://stackoverflow.com/questions/10149233/javascript-php-can-i-get-gps-location-and-send-it-to-me – ThiefMaster 2012-04-14 09:11:42
人們不回答它... – 2012-04-14 09:21:22