|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
請教關於全屏的問題
我想在打開一個頁子的時候,它自己就是全屏(就像按了F11後的效果),請問該加什麼句子?謝謝 |
我是新手.請高手幫幫忙啦! |
對支持多窗口的瀏覽器無效:
[html]
<script language=javascript>
function openFullScreenWindow()
{var fwin=window.open("","","fullscreen=1,menubar=0,toolbar=0,derectories=0,location=0,status=0,scrollvars=0");
fwin.document.write('<input type="button" value="關閉" onClick="window.close();">');
}
</script>
<input type="button" value="打開全屏窗口" onClick="openFullScreenWindow();">
[/html] |
收了
我也正想問呢:)
怎麼設置只有菜單欄這樣的 |
|