1

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

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

4

2 回答 2

3

试试这个:

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
于 2012-05-22T12:26:38.970 回答
1

您可以将十进制值 (0 - 255) 转换为十六进制 (0 - FF)

var hexString = redNumber.toString(16) + greenNumber.toString(16) + blueNumber.toString(16);
于 2012-05-22T09:17:23.610 回答