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定失败;'); })}我直接在静态文件中打开为什么不行总是打印定位失败但是在手机上是可以的浏览器也是支持的啊 为什么不能定位
添加回答
举报
0/150
提交
取消