我在JavaScript中有一个<div>
元素引用,如下所示:
custom_div = document.createElement("div")
我想将此元素的position
更改为absolute
,并通过JavaScript将bottom
对齐设置为0
。我正在寻找建议。
答案 0 :(得分:1)
有很多方法可以做到这一点,但不建议直接操作DOM。使用CSS classes或尝试jQuery。
答案 1 :(得分:0)
您可以简单地使用:
document.getElementById("div#example").style.position="absolute";
document.getElementById("div#example").style.bottom="0";