码迷,mamicode.com
首页 > Web开发 > 详细

JS获得元素颜色

时间:2017-03-05 20:36:40      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:内联   span   input   code   compute   script   html   tle   htm   

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{background: RGB(222,222,2);}
</style>
</head>

<body>
<input type=‘button‘ value=‘点击按钮获取页面背景色‘ onclick="fun()"/>


<script type="text/javascript">
/*
*javascript的style属性只能获取内联样式,对于外部样式和嵌入式样式*需要用currentStyle属性。但这种方法有兼容性(FF和Chrome不支持)
*/
HTMLElement.prototype.__defineGetter__("currentStyle", function() {
return this.ownerDocument.defaultView.getComputedStyle(this, null);
});

function fun(){
var color = document.body.currentStyle.backgroundColor;
alert(color);
}
</script>
</body>

</html>

 

JS获得元素颜色

标签:内联   span   input   code   compute   script   html   tle   htm   

原文地址:http://www.cnblogs.com/cy2525/p/6506439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!