当前位置: 代码迷 >> JavaScript >> 怎么让button位于窗口的底部
  详细解决方案

怎么让button位于窗口的底部

热度:396   发布时间:2012-02-05 12:07:15.0
如何让button位于窗口的底部?


------解决方案--------------------
<html>
<body>
<button style= "position:relative; "id= "btn1 "> 最底部 </button>
</body>
<script>
document.getElementById( "btn1 ").style.top=document.body.clientHeight-2*document.getElementById( "btn1 ").offsetHeight;
</script>
</html>
  相关解决方案