在线文档教程

typedArray.byteLength

typedArray.byteLength

byteLength访问器属性表示类型化数组的长度(字节数)。

语法

typedarray.byteLength

描述

byteLength是一个访问器属性,它的 set 访问器函数是undefined,意思是你只能够读取这个属性。它的值在TypedArray构造时建立,不能被修改。如果TypedArray没有指定byteOffset或者length,会返回所引用的ArrayBufferlengthTypedArray是这里的TypedArray 对象之一。

示例

使用byteLength 属性

var buffer = new ArrayBuffer(8 var uint8 = new Uint8Array(buffer uint8.byteLength; // 8 (matches the byteLength of the buffer) var uint8 = new Uint8Array(buffer, 1, 5 uint8.byteLength; // 5 (as specified when constructing the Uint8Array) var uint8 = new Uint8Array(buffer, 2 uint8.byteLength; // 6 (due to the offset of the constructed Uint8Array)

规范

SpecificationStatusComment
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'TypedArray.prototype.byteLength' in that specification.StandardInitial definition.
ECMAScript Latest Draft (ECMA-262)The definition of 'TypedArray.prototype.byteLength' in that specification.Draft

浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support7.04.0 (2)1011.65.1

FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support4.0(Yes)4.0 (2)1011.64.2