案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function changeSize()
5
{
6
document.getElementById("frame1").height="300";
7
document.getElementById("frame1").width="300";
8
}
9
function restoreSize()
10
{
11
document.getElementById("frame1").height="200";
12
document.getElementById("frame1").width="200";
13
}
14
</script>
15
</head>
16
17
<body>
18
<iframe src="/example/hdom/frame_a.html" id="frame1" height="200" width="200"></iframe>
19
<br /><br />
20
21
<input type="button" onclick="changeSize()" value="Change size" />
22
<input type="button" onclick="restoreSize()" value="Restore size" />
23
24
</body>
25
</html>
26