x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function floatRight() {
8
document.getElementById("img1").style.cssFloat = "right";
9
}
10
11
function floatLeft() {
12
document.getElementById("img1").style.cssFloat = "left";
13
}
14
</script>
15
</head>
16
<body>
17
18
<img id="img1" src="/examples/paris.jpg" width="100" height="132">
19
<p>这是一个段落。</p>
20
<p>这也是一个段落。</p>
21
<input type="button" onclick="floatRight()" value="右浮动">
22
<input type="button" onclick="floatLeft()" value="左浮动">
23
24
</body>
25
</html>