<html>
<head>
<title>Untitled Document</title>
<script language="JavaScript">
function wincopy()
{
var s='<html>'+document.documentElement.innerHTML+'</html>';
var w=window.open('','','left=0,top=0,heith='+screen.height+',width='+screen.height);
w.document.write(s);
w.opener.close();
return false;
}
</script>
</head>
<body>
<p>
<input type="button" name="b1" value="全屏" onClick='wincopy();return false;'>
</p>
</body>
</html>
------------------
上面的代码转入intraweb非常容易,wincopy函数放在窗口的javascript里,然后填写
按钮的客户端事件(scriptEvents)onclick即可。