87,988
社区成员
发帖
与我相关
我的任务
分享
// 以下为我的js代码 alert后面的注释是出现的错误
$(function(){
navigator.geolocation.getCurrentPosition(success());
});
function success(p){
alert(p); // 输出为 undefined
// var lng = position.coords.longitude; // 经度
// var lat = position.coords.latitude; // 纬度
// alert(lng+"----"+lat) // 无法输出
}
navigator.geolocation.getCurrentPosition(success(1));
如果这么写,是不是你就能得到p=1了,你觉得这样是对的吗?