我正在使用 Geolocation 对象和 getCurrentPosition()。
您是否看到每次使用 getCurrentPosition Firefox 和 Chrome 都会提示这些按摩?
铬合金:
Example.com wants to track your physical location [allow] [deny] [ X close ]
火狐:
Example.com wants to know your location [Share Location] [Don't Share] [Close]
我的问题是:当用户没有“允许”或“拒绝”位置选项而是关闭提示时如何处理?
我有这个 JAVASCRIPT 代码,但是当用户关闭提示时它不起作用:
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
onSuccess,
onError,
{
//enableHighAccuracy: true,
timeout: 5000
//maximumAge: 120000
}
);
alert("holaaaa");
} else {
alert('Geolocation not supported.');
}
我遇到了一些问题,请帮助?
这个问题与这篇文章有关: 当用户允许或拒绝访问“物理位置”时如何调用函数?