DOMPointReadOnly 方法 toJSON() 返回 DOMPointInit object giving the JSON form of the point object.

句法

pointJSON = DOMPointReadOnly.toJSON();
					

参数

None.

返回值

新的 DOMPointInit object whose properties are set to the values in the DOMPoint or DOMPointReadOnly on which the method was called.

范例

此范例创建 DOMPoint object representing the top-left corner of the current window, in screen coordinates, then converts that to JSON.

var topLeft = new DOMPoint(window.screenX, window.screenY);
var pointJSON = topLeft.toJSON();
					

规范

规范 状态 注释
Geometry Interfaces Module Level 1
The definition of 'DOMPointReadOnly.toJSON()' 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
toJSON() Chrome 61 Edge 79 Firefox 62 IE No Opera 48 Safari 10.1 WebView Android 61 Chrome Android 61 Firefox Android 62 Opera Android 45 Safari iOS 10.3 Samsung Internet Android 8.0

图例

完整支持

完整支持

不支持

不支持

元数据

  • 最后修改: