<html>
<body onload="javascript:window.open('index.html','','fullscreen=yes,toolbar=no,scrollbars=yes,titlebar=no,top=0,left=0,resizable=yes')">
</body>
</html>
当本页面加载的时候,就全屏打开index.html页面。
主要还是window.open();方法的使用。
<html>
<body onload="javascript:window.open('index.html','','fullscreen=yes,toolbar=no,scrollbars=yes,titlebar=no,top=0,left=0,resizable=yes')">
</body>
</html>
当本页面加载的时候,就全屏打开index.html页面。
主要还是window.open();方法的使用。