编辑下面的代码:【加编码】
<html> <head> <script> function floatRight() { document.getElementById("img1").style.cssFloat="right"; } function floatLeft() { document.getElementById("img1").style.cssFloat="left"; } </script> </head> <body> <img id="img1" src="/demo/w3javascript.gif" width="100" height="132"> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <input type="button" onclick="floatRight()" value="Float right"> <input type="button" onclick="floatLeft()" value="Float left"> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂