gpt4 book ai didi

javascript - 如何通过javascript将颜色从(rrr ggg bbb)转换为RRGGBB

转载 作者:行者123 更新时间:2023-11-30 10:41:41 30 4
gpt4 key购买 nike

我有这段代码(在 Selenium IDE 中):storeEval | window.document.defaultView.getComputedStyle(window.document.getElementsByTagName('input')[0]).getPropertyValue('background-color') |结果

它在 (rrr, ggg, bbb) 中返回给我颜色,我怎样才能在 RRGGBB 中得到这个颜色?

最佳答案

试试这个:

command: storeEval
target : color = window.document.defaultView.getComputedStyle(window.document.getElementsByTagName('input')[0]).getPropertyValue('background-color'); colorArr = color.replace(/[(rgb()\)]/g, '').split(','); hexString = parseInt(colorArr[0]).toString(16) + parseInt(colorArr[1]).toString(16) + parseInt(colorArr[2]).toString(16);
value : result

关于javascript - 如何通过javascript将颜色从(rrr ggg bbb)转换为RRGGBB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10699039/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com