实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function setSpace()
6
{
7
document.getElementById("compman").hspace="50";
8
document.getElementById("compman").vspace="50";
9
}
10
</script>
11
</head>
12
<body>
13
14
<img id="compman" src="/upload/love/html.gif" alt="Computerman" width="107" height="98">
15
<p>Some text. Some text. Some text. Some text.</p>
16
17
<input type="button" onclick="setSpace()" value="Set hspace and vspace">
18
19
</body>
20
</html>