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

句法

var rectValue = cssPrimitiveValue.getRectValue();
					

返回值

A Rect object representing the rect value.

异常

类型 描述
DOMException An INVALID_ACCESS_ERR is raised if the CSS value doesn't contain a Rect value. (i.e. this is not CSS_RECT ).

范例

var cs = window.getComputedStyle(document.getElementById("clippedDiv"));
var cssValue = cs.getPropertyCSSValue("clip");
console.log(cssValue.getRectValue());
					

规范

规范 状态 注释
Document Object Model (DOM) Level 2 Style Specification
The definition of 'CSSPrimitiveValue.getRectValue' 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
getRectValue 弃用 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

图例

不支持

不支持

兼容性未知 ?

兼容性未知

弃用。不要用于新网站。

弃用。不要用于新网站。

元数据

  • 最后修改: