我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译
您也可以阅读此文章的English (US)版。
The requireInteraction
read-only property of the Notification
interface returns a Boolean
indicating that a notification should remain active until the user clicks or dismisses it, rather than closing automatically.
Note: This can be set when the notification is first created by setting the requireInteraction
option to true
in the options object of the Notification.Notification()
constructor.
Note: This feature is available in Web Workers.
Syntax
function spawnNotification(theTitle,theBody,shouldRequireInteraction) { var options = { body: theBody, requireInteraction: shouldRequireInteraction } var n = new Notification(theTitle,options); }
Value
A Boolean
.
Specifications
Specification | Status | Comment |
---|---|---|
Notifications API The definition of 'requireInteraction' in that specification. |
Living Standard | Living standard. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome Full support Yes | Edge Full support 17 | Firefox No support No | IE No support No | Opera ? | Safari ? | WebView Android No support No | Chrome Android Full support Yes | Edge Mobile No support No | Firefox Android No support No | Opera Android ? | Safari iOS No support No | Samsung Internet Android ? |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
See also