setFloat64()DataView起始位置以byte为计数的指定偏移量(byteOffset)处储存一个64-bit数(双精度浮点型).

语法

dataview.setFloat64(byteOffset, value [, littleEndian])

参数

byteOffset
偏移量,从头开始计算,单位为字节.
value
设置的数值.
littleEndian
可选 Indicates whether the 64-bit float is stored in little- or big-endian format. If false or undefined, a big-endian value is written.

返回

undefined.

抛出错误

RangeError
如果byteOffset超出了视图能储存的值,就会抛出错误.

例子

var buffer = new ArrayBuffer(8);
var dataview = new DataView(buffer);
dataview.setFloat64(0, 3);
dataview.getFloat64(0); // 3

规范

Specification Status Comment
Typed Array Specification Obsolete Superseded by ECMAScript 6.
ECMAScript 2015 (6th Edition, ECMA-262)
DataView.prototype.setFloat64
Standard Initial definition in an ECMA standard.
ECMAScript Latest Draft (ECMA-262)
DataView.prototype.setFloat64
Draft  

浏览器支持

Update compatibility data on GitHub
DesktopMobileServer
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidEdge MobileFirefox for AndroidOpera for AndroidSafari on iOSSamsung InternetNode.js
setFloat64Chrome Full support 9Edge Full support 12Firefox Full support 15IE Full support 10Opera Full support 12.1Safari Full support 5.1WebView Android Full support 4Chrome Android Full support YesEdge Mobile Full support YesFirefox Android Full support 15Opera Android Full support 12Safari iOS Full support 4.2Samsung Internet Android Full support Yesnodejs Full support Yes

Legend

Full support  
Full support

相关内容