x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function changeSize() {
8
document.getElementById("compman").height = "250";
9
document.getElementById("compman").width = "300";
10
}
11
</script>
12
</head>
13
<body>
14
15
<img id="compman" src="/examples/compman.gif" width="107" height="98">
16
<br><br>
17
<input type="button" onclick="changeSize()" value="修改图像大小">
18
19
</body>
20
</html>