如何通过javascript

时间:2016-06-17 22:08:16

标签: javascript

可以改变div位置(绝对或相对的css),但使用java脚本

代码

<div id="podpis" margin-top="2">
      <div class="invoice-signature">
        <span><?=$xml->sanitize($invoice['Invoice']['user_name'])?></span><br/>
        <span>First name and second name osoby uprawnionej do wystawiania faktury</span>
      </div>

      <div class="invoice-signature">
        <span><br/></span><br/>
        <span>First name and second name</span>
      </div>

      <div clear="both"/>
    </div>

我想要更改div id="podpis"的位置。

感谢您的回答!

2 个答案:

答案 0 :(得分:0)

是的,你可以使用:

<script>
   document.getElementById('podpis').style.position = 'absolute';
   document.getElementById('podpis').style.position = 'relative';
</script>

希望这有帮助。

答案 1 :(得分:0)

设置位置值:

document.getElementById('podpis').style.position = 'relative';

document.getElementById('podpis').style.position = 'absolute';

根据您的评论,我觉得您希望podpis留在页面底部,无论如何?

//div stays in same place on screen no matter what, even when scrolling
document.getElementById('podpis').style.position = 'fixed';
//div goes to the bottom of the page
document.getElementById('podpis').style.bottom = '0';