admin管理员组文章数量:1344194
I'm trying to read "marginTop" style property from the <html>
and <body>
tags. Chrome developer tools shows margin-top as set via in-HTML CSS:
<style type="text/css" media="screen">
html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
However, when I try something like this:
console.debug(document.getElementsByTagName('html')[0].style.marginTop);
console.debug(document.getElementsByTagName('body')[0].style.marginTop);
I get empty strings in both cases.
jQuery's offset()
function detects margins correctly. Unfortunately, I cannot use jQuery in this case, it has to be pure JavaScript.
I would appreciate if someone could provide some insight on how I can read top margin property off the html and body elements.
I'm trying to read "marginTop" style property from the <html>
and <body>
tags. Chrome developer tools shows margin-top as set via in-HTML CSS:
<style type="text/css" media="screen">
html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
However, when I try something like this:
console.debug(document.getElementsByTagName('html')[0].style.marginTop);
console.debug(document.getElementsByTagName('body')[0].style.marginTop);
I get empty strings in both cases.
jQuery's offset()
function detects margins correctly. Unfortunately, I cannot use jQuery in this case, it has to be pure JavaScript.
I would appreciate if someone could provide some insight on how I can read top margin property off the html and body elements.
Share Improve this question edited Jan 2, 2013 at 11:47 Jan Hančič 53.9k17 gold badges98 silver badges101 bronze badges asked Jan 2, 2013 at 11:45 martynasmamartynasma 8,5952 gold badges32 silver badges47 bronze badges 2- 3 why are you unable to use jquery in this instance? You can always look into jquery method of geting margins. Somewhere in its system it grabs the properties – ProfileTwist Commented Jan 2, 2013 at 11:47
- It's an addon library. I don't have any control over environments it will be used in. It does not rely on jQuery and it would be silly to add it to requirements just for this. – martynasma Commented Jan 2, 2013 at 12:02
2 Answers
Reset to default 10You can solve it with:
var element = document.getElementsByTagName('html')[0],
style = window.getComputedStyle(element),
marginTop = style.getPropertyValue('margin-top');
jsFiddle
The document
already has knowledge about body
element, so:
window.getComputedStyle(document.body).getPropertyValue('margin-top');
本文标签: Using JavaScript to read htmlbody tag margintopStack Overflow
版权声明:本文标题:Using JavaScript to read htmlbody tag margin-top - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743747141a2531965.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论