我在db中有一个特定用户的纬度和经度..我正在使用jquery获取值..这就是我正在做的
var auto_refresh = setInterval(
function ()
{
$.get('http://localhost/Location/locate', function(data){
$('.latitude').html(data.lat);
$('.longitude').html(data.long);
}, 'json');
}, 1000);
当我从 php 获取位置时,我正在这样做
'localize' => false,
'latitude' => $latitude,
'longitude' => $longitude,
'address' => $address,
'marker' => true,
现在我正在这样做,但给了我语法错误
'latitude' => ?><div class = 'latitude'></div><?php ,
'longitude' => ?><div class = 'longitude'></div><?php ,
我想问的另一件事是,这是在不刷新页面的情况下获取位置的最佳方法.. 或者还有其他东西。