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