实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function changeSize()
6
{
7
document.getElementById("myframe").height="300";
8
document.getElementById("myframe").width="300";
9
}
10
</script>
11
</head>
12
13
<body>
14
<iframe id="myframe" src="https://shouce.ren" height="200" width="200">
15
<p>Your browser does not support iframes.</p>
16
</iframe>
17
<br><br>
18
19
<input type="button" onclick="changeSize()" value="Change size">
20
21
</body>
22
</html>
23