以下是我在Google Chrome中遇到的错误:
Uncaught TypeError: Object #<HTMLDivElement> has no method 'webkitCancelFullScreen'
我在Firefox中遇到了类似的错误。
以下是代码:
document.id('close-full-screen').addEvent('click', function() {
document.id('full-screen').webkitCancelFullScreen();
});
答案 0 :(得分:3)
根据Documentation found here,从webkitCancelFullScreen
对象调用document
而不是div。因此,您的代码应该是。
document.id('close-full-screen').addEvent('click', function() {
document.webkitCancelFullScreen();
});