我試圖激活全屏模式使用Javascript,但它不工作。如何激活全屏模式?
請注意,功能(行4和11)內的控制檯日誌正在打印正確的值,但全屏模式未顯示。
可能是什麼問題?這是我的代碼。
function fullscreen()
{
var _element = document.getElementById('BookMainDiv');
console.log(_element);
if (_element.mozRequestFullScreen)
{
_element.mozRequestFullScreen();
}
else if(_element.webkitRequestFullScreen)
{
console.log("aaa");
_element.webkitRequestFullScreen();
}
}
HTML
<body>
<div id="BookMainDiv" style="width:500px;height:500px;background-color:yellow">
</div>
<input type="button" style="height:20%;width:20%" onclick="fullscreen()">
</body>
附:我在Windows 8上使用chrome 31
如何調用'fullscreen'? –
_element.webkitRequestFullScreen(); –
我的意思是,你從控制檯嘗試? (它不會工作,你需要頁面啓動它,與原點有關) –