TouchList:length 属性
length
只读属性表示给定 TouchList
中的项目(触点)数量。
值
touchList
中的触点数。
示例
此代码示例演示了 TouchList
接口的 item
方法和 length
属性的使用。
js
const target = document.getElementById("target");
target.addEventListener(
"touchstart",
(ev) => {
// If this touchstart event started on element target,
// set touch to the first item in the targetTouches list;
// otherwise set touch to the first item in the touches list
const touch =
ev.targetTouches.length >= 1
? ev.targetTouches.item(0)
: ev.touches.item(0);
},
false,
);
规范
规范 |
---|
触摸事件 # dom-touchlist-length |
浏览器兼容性
BCD 表格仅在浏览器中加载