将rgb转换为十六进制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将rgb转换为十六进制相关的知识,希望对你有一定的参考价值。
Convert rgb color detected by jQuery into hex value.
function rgb2hex(rgb) { //convert rgb value to hex rgb = rgb.match(/^rgba?((d+),s*(d+),s*(d+)(?:,s*(d+))?)$/); function hex(x) { return ("0" + parseInt(x).toString(16)).slice(-2); } return "#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]); } //example get background color with jQuery var bgcolor=rgb2hex($('body').css('background-color'));
以上是关于将rgb转换为十六进制的主要内容,如果未能解决你的问题,请参考以下文章