JavaScript 参考手册
Style right 属性
设置按钮的右部位置
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style type="text/css"> #b1 { position: absolute; } </style> <script> function displayResult() { document.getElementById("b1").style.right = "100px"; } </script> </head> <body> <input type="button" id="b1" onclick="displayResult()" value="设置右部位置为100 px"> </body> </html>
运行结果:
点击运行 »