在网页当在怎样实现全屏效果呢?
我说的全屏是指没有IE的地址栏,也没有标准按钮,请教各位大侠,能帮我这个忙吗?我在网上搜了,没什以好的,只有回到这个大本营来找个高手指点一下了,呵呵
[CODE]<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>打开全屏窗口</title>
<script language="javascript">
function fullit()
{
window.open("http://www.toumh.com/", "PhotoView", "fullscreen=1");
}
</script>
</head>
<body>
<input type="button" value="打开全屏窗口" onClick="fullit()">
</body>
</html>[/CODE]