在 JavaScript 中将 RGB 转换为十六进制颜色值
jQuery 函数 $('#selector').css('backgroundColor') 提供元素背景颜色的 RGB 值。如果您需要获取十六进制值,这里有一个全面的解决方案:
单行函数(2021 年更新):
const rgba2hex = (rgba) => `#${rgba.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*(\d+\.{0,1}\d*))?\)$/).slice(1).map((n, i) => (i === 3 ? Math.round(parseFloat(n) * 255) : parseFloat(n)).toString(16).padStart(2, '0').replace('NaN', '')).join('')}`
此函数同时支持 RGB和 RGBA 值。
跨浏览器 One-Liner (ES5 ):
const rgb2hex = (rgb) => `#${rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/).slice(1).map(n => parseInt(n, 10).toString(16).padStart(2, '0')).join('')}`
此替代函数仅适用于 RGB 值。
用法示例:
console.log(rgb2hex('rgb(255, 255, 255)')); // '#ffffff' console.log(rgb2hex('rgb(0, 0, 0)')); // '#000000'
以上是如何在 JavaScript 中将 RGB 颜色值转换为十六进制颜色值?的详细内容。更多信息请关注PHP中文网其他相关文章!