使用javascript按钮位置问题

时间:2012-09-17 21:20:26

标签: javascript jquery

我有两行代码。 show1和show2是我的JSP页面上的按钮,根据下面的代码定位。但是,按钮show2显示在按钮show1的下方。如何解决此问题。

  document.getElementById('show1').style.marginTop="33%";

  document.getElementById('show2').style.marginTop="33%";

1 个答案:

答案 0 :(得分:1)

确保您为每个人使用position: absolute;

document.getElementById('show1').style.position = 'absolute';
document.getElementById('show2').style.position = 'absolute';