1

我有:

function doit()
{
    document.getElementById('id1').mozRequestFullScreen();
}

但它不起作用。虽然它适用于这个网站

jsFiddle在这里

为什么?(我正在使用 FireFox。)

4

1 回答 1

4

JSFiddle 结果显示在 iframe 中。除非此框架通过添加 mozallowfullscreen 属性明确允许全屏,否则它将静默失败:

https://developer.mozilla.org/en-US/docs/HTML/Element/iframe#attr-mozallowfullscreen

于 2013-01-08T23:37:32.890 回答