admin管理员组文章数量:1345732
I know I must be missing something here, but I cannot seem to get this to work.
I have assigned a background color to the body of an html document using the style tags inside the head section of the document, but when I try to read it via JavaScript, I get nothing:
<html>
<head>
<style>
body { background-color: #ff0; }
</style>
</head>
<body>
<a href="#" onclick='alert(document.body.style.backgroundColor)'>Click Here</a>
</body>
</html>
.. however, if I assign the style inline, it works:
<html>
<head></head>
<body style='background-color: #ff0;'>
<a href="#" onclick='alert(document.body.style.backgroundColor)'>Click Here</a>
</body>
</html>
I know I am missing something basic, but my mind is not in the zone today -- can anyone tell me why my first scenario is not working?
Thanks
I know I must be missing something here, but I cannot seem to get this to work.
I have assigned a background color to the body of an html document using the style tags inside the head section of the document, but when I try to read it via JavaScript, I get nothing:
<html>
<head>
<style>
body { background-color: #ff0; }
</style>
</head>
<body>
<a href="#" onclick='alert(document.body.style.backgroundColor)'>Click Here</a>
</body>
</html>
.. however, if I assign the style inline, it works:
<html>
<head></head>
<body style='background-color: #ff0;'>
<a href="#" onclick='alert(document.body.style.backgroundColor)'>Click Here</a>
</body>
</html>
I know I am missing something basic, but my mind is not in the zone today -- can anyone tell me why my first scenario is not working?
Thanks
Share Improve this question asked Jul 8, 2009 at 14:12 OneNerdOneNerd 6,55217 gold badges63 silver badges78 bronze badges 2- stackoverflow./questions/1048336/… – Maciej Łebkowski Commented Jul 8, 2009 at 14:17
- Check this out: stackoverflow./questions/324486/… – Peter Commented Jul 8, 2009 at 14:17
4 Answers
Reset to default 7The style
property of a DOM element refers only to the element's inline styles.
Depending on the browser, you can get the actual style of an element using DOM CSS
In firefox, for example:
var body = document.getElementsByTagName("body")[0];
var bg = window.getComputedStyle(body, null).backgroundColor;
Or in IE:
var body = document.getElementsByTagName("body")[0];
var bg = body.currentStyle.backgroundColor;
In this case, you'll want the putedStyle
on the Element as the style
attribute hasn't been set yet. In IE, you'll need to check the Element's currentStyle
property, via something like this.
Here is a function you can use (without the use of a framework ie) that was posted here by InsDel:
function getStyle(className) {
var classes = document.styleSheets[0].rules || document.styleSheets[0].cssRules
for(var x=0;x<classes.length;x++) {
if(classes[x].selectorText==className) {
(classes[x].cssText) ? alert(classes[x].cssText) : alert(classes[x].style.cssText);
}
}
}
getStyle('.test')
That's just how css works. There's no straight-forward way to get the puted css attributes of an element within Javascript, that I know of, short of browser specific utilities.
本文标签: Reading noninline CSS style info from JavascriptStack Overflow
版权声明:本文标题:Reading non-inline CSS style info from Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743707047a2525294.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论