我使用Firefox 30.0(最新的FF),navigator.geolocation.getCurrentPosition
在Chrome中工作,但在此版本的FF中不能使用。navigator.geolocation.getCurrentPosition在Firefox中不起作用30.0
這裏是我的代碼
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(GEOprocess, GEOdeclined);
}else{
alert('Your browser sucks. Upgrade it.');
}
function GEOdeclined(error) {
alert('Error: ' +error.message);
}
function GEOprocess(position) {
alert('it works');
}
我收到此錯誤
Error: Unknown error acquiring position
注:僅自停工作時,我在我的FF升級到30.0
同樣的問題在這裏 – inigoD