DataView.prototype.setUint16()
DataView
实例的 setUint16()
方法获取一个数字,并将其作为 16 位无符号整数存储在从该 DataView
的指定字节偏移量开始的 2 个字节中。没有对齐约束;多字节值可以存储在边界内的任何偏移处。
¥The setUint16()
method of DataView
instances takes a number and stores it as a 16-bit unsigned integer in the 2 bytes starting at the specified byte offset of this DataView
. There is no alignment constraint; multi-byte values may be stored at any offset within bounds.
Try it
语法
参数
¥Parameters
byteOffset
-
距存储数据的视图开头的偏移量(以字节为单位)。
value
-
要设置的值。有关如何以字节为单位对值进行编码的信息,请参阅 值编码和标准化。
littleEndian
Optional-
表示数据是否以 小端或大端 格式存储。如果是
false
或undefined
,则写入大端值。
返回值
例外情况
示例
使用 setUint16()
规范
Specification |
---|
ECMAScript Language Specification # sec-dataview.prototype.setuint16 |
浏览器兼容性
BCD tables only load in the browser
也可以看看
¥See also