当用户拒绝地理定位服务时,我会收到拒绝事件吗?

发布于 2024-10-29 05:19:23 字数 129 浏览 0 评论 0原文

我的意思是,如果我在网页上有一个按钮,当用户单击该按钮时,

就可以获取用户的地理位置信息。

但在此之前,浏览器会询问用户是否接受使用地理定位服务。

如果用户拒绝地理定位服务,我可以获得拒绝事件吗?

I mean, if i have a button on the web page, when a user click the button,

then can get the user's geolocation information.

but before, the browser will ask the user whether accept to use the geolocation service.

if the user reject the geolocation service, can i get the reject event?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

客…行舟 2024-11-05 05:19:23

是的。

示例:

navigator.geolocation.getCurrentPosition(successCallback, errorCallback);

function successCallback(){
    alert('Thanks for allowing geolocation!');
}

function errorCallback(){
    alert('You denied us access to geolocation...');
}

查看Geolocation API 规范以获取更多参考。

Yes.

Example:

navigator.geolocation.getCurrentPosition(successCallback, errorCallback);

function successCallback(){
    alert('Thanks for allowing geolocation!');
}

function errorCallback(){
    alert('You denied us access to geolocation...');
}

Check Geolocation API Specification for further reference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文