xxxxxxxxxx
<html>
<head>
<script>
function resizeWindow()
{
top.resizeBy(100,100);
}
</script>
</head>
<body>
<form>
<input type="button" onclick="resizeWindow()" value="Resize window">
</form>
<p><b>注意:</b>我们使用了 <b>top</b> 元素而不是<b>window</b>元素, 因为我们使用<b>frames</b>。如果你不使用<b>frames</b>,使用<b>window</b>元素来代替。</p>
</body>
</html>