首页 > 代码库 > JS获得元素颜色
JS获得元素颜色
<!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获得元素颜色
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。