Document.onfullscreenerror - Web API 接口参考 编辑
Document.onfullscreenerror 属性是一个事件处理器用于处理 fullscreenchange
事件,在当前文档不能进入全屏模式,即使它被请求时触发。
语法
targetDocument.onfullscreenerror = fullscreenErrorHandler;
示例
document.onfullscreenerror = function ( event ) {
console.log("FULL SCREEN DENIED")
};
// requestFullscreen()将会失败,因为它在事件处理器之外
document.documentElement.requestFullscreen();
规范
Specification | Status | Comment |
---|---|---|
Fullscreen API onfullscreenerror | Living Standard | Initial definition. |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 45 | 47 (47)[1] (behind full-screen-api.unprefix.enabled | ? | ? | ? |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | 45 | 45 | 47 (47) [1] (behind full-screen-api.unprefix.enabled | ? | ? | ? | ? |
[1] 在Firefox 49之前, 此属性从技术上来说属于GlobalEventHandlers
, 但把相关的事件处理器绑定在一个 Element
上时却永远不会触发.
相关文章
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论