if (navigator.geolocation) {
console.log("h5 定位中");
navigator.geolocation.getCurrentPosition(function(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
alert(latitude)
alert(longitude)
alert('h5定位成功;');
}, function(error) {
console.log('h5定失败;');
})
}
我直接在静态文件中打开为什么不行
总是打印定位失败
但是在手机上是可以的
浏览器也是支持的啊 为什么不能定位
相关分类