实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function changeSize()
6
{
7
document.getElementById("compman").height="250";
8
document.getElementById("compman").width="300";
9
}
10
</script>
11
</head>
12
<body>
13
14
<img id="compman" src="/upload/love/html.gif" width="107" height="98">
15
<br><br>
16
<input type="button" onclick="changeSize()" value="Change size of image">
17
18
</body>
19
</html>