Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. PermissionStatus

PermissionStatus

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2022⁩.

Note: This feature is available inWeb Workers.

ThePermissionStatus interface of thePermissions API provides the state of an object and an event handler for monitoring changes to said state.

EventTarget PermissionStatus

Instance properties

PermissionStatus.nameRead only

Returns the name of a requested permission, identical to thename passed toPermissions.query.

PermissionStatus.stateRead only

Returns the state of a requested permission; one of'granted','denied', or'prompt'.

Events

change

Invoked upon changes toPermissionStatus.state.

Example

js
navigator.permissions  .query({ name: "geolocation" })  .then((permissionStatus) => {    console.log(`geolocation permission status is ${permissionStatus.state}`);    permissionStatus.onchange = () => {      console.log(        `geolocation permission status has changed to ${permissionStatus.state}`,      );    };  });

Specifications

Specification
Permissions
# permissionstatus-interface

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp