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

jQuery取CSS的HEX(16位)颜色值

时间:2014-11-27 10:35:34      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   on   div   

//IE10以上版本、CHROME、FIREFOX中GRB颜色转HEX颜色值
            $.fn.getBackgroundColor = function() {
                var rgb = $(this).css(‘background-color‘);
                if(rgb >= 0){
                    return rgb;    //如果是一个hex值则直接返回
                }else{
                    rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
                    function hex(x) {return ("0" + parseInt(x).toString(16)).slice(-2);}
                    rgb= "#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]);
                }
                return rgb;
            }

 

jQuery取CSS的HEX(16位)颜色值

标签:style   blog   io   ar   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/feiblog/p/4125620.html

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