看看这个:
function doGeolocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(positionSuccess, positionError);
if(//here i need check)
{
Save();
}
}
else
{
positionError(-1);
}
}
因此,在内部“如果”中,我想检查 navigator.geolocation.getcurrentposition(); 已经成功完成。任何帮助将不胜感激。
谢谢..