0

我知道,如果您使用 jquery 将样式设置为百分比,它会将其更改为像素。

我怎么能用javascript做到这一点?

编辑

elem.style.left = document.body.style.width / 2;
elem.style.top = document.body.style.height / 2;

两者都返回 0

4

1 回答 1

1

为了document.body

elem.style.top = Math.floor(document.body.offsetHeight / 2) + 'px'
于 2013-10-02T06:36:19.583 回答