JavaScript 参考手册
Style position 属性
把元素的 position(位置)从 static(静态,默认)改为 absolute(绝对)
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function displayResult() { document.getElementById("b1").style.position = "absolute"; document.getElementById("b1").style.top = "100px"; document.getElementById("b1").style.left = "100px"; } </script> </head> <body> <p>这是一个段落。</p> <p>这是一个段落。</p> <p>这是一个段落。</p> <p>这是一个段落。</p> <input type="button" id="b1" onclick="displayResult()" value="定位我"> </body> </html>
运行结果:
点击运行 »