TouchEvent.targetTouches - Web API 接口参考 编辑
targetTouches
是一个只读的 TouchList
列表,包含仍与触摸面接触的所有触摸点的 Touch
对象。touchstart
事件触发在哪个element
内,它就是当前目标元素。
语法
var touches = touchEvent.targetTouches;
返回值
touches
- 一个
TouchList
,包含仍与触摸面接触的所有触摸点的Touch
对象,touchstart
事件触发在哪个element
内,它就是当前目标元素。
例子
本例阐述了 TouchEvent
对象的 TouchEvent.targetTouches
属性。TouchEvent.targetTouches
属性也是一个 TouchList
,其中包含的触摸点起始于触摸事件当前的目标元素,并且此刻正在触摸屏幕。所以,targetTouches 元素是 touches
的真子集。
下面代码段中的函数比较了 touches
列表和 targetTouches
列表的长度,返回值表示他们是否相等。
function touches_in_target(ev) {
// Return true if all of the touches are within the target element;
// otherwise return false.
return (ev.touches.length == ev.targetTouches.length ? true : false);
}
规格
Specification | Status | Comment |
---|---|---|
Touch Events – Level 2 | Draft | Non-stable version. |
Touch Events | Recommendation | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论