getRGBColorValue() 方法在 CSSPrimitiveValue interface is used to get an RGB color value. If this CSS value doesn't contain a RGB color value, a DOMException is raised. Modification to the corresponding style property can be achieved using the RGBColor 接口。

句法

var rgbColorValue = cssPrimitiveValue.getRGBColorValue();
					

返回值

RGBColor object representing the color value.

异常

类型 描述
DOMException An INVALID_ACCESS_ERR is raised if the attached property can't return an RGB color value (i.e. this is not CSS_RGBCOLOR ).

范例

var cs = window.getComputedStyle(document.body);
var cssValue = cs.getPropertyCSSValue("color");
console.log(cssValue.getRGBColorValue());
					

规范

规范 状态 注释
Document Object Model (DOM) Level 2 Style Specification
The definition of 'CSSPrimitiveValue.getRGBColorValue' in that specification.
过时 初始定义

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
getRGBColorValue 弃用 Chrome 不支持 No Edge 不支持 No Firefox 不支持 ? — 62 IE ? Opera 不支持 No Safari ? WebView Android 不支持 No Chrome Android 不支持 No Firefox Android 不支持 4 — 62 Opera Android ? Safari iOS ? Samsung Internet Android 不支持 No

图例

不支持

不支持

兼容性未知 ?

兼容性未知

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

弃用。不要用于新网站。

弃用。不要用于新网站。

元数据

  • 最后修改: