有人知道Chrome Canary是否删除了e.originalEvent.touches? 在Chrome中运行以下脚本Stable返回1,在Chrome Canary中返回错误(未捕获的TypeError:无法读取未定义的属性'length'。
jQuery(document).on('touchstart', function(e){ console.log(e.originalEvent.touches.length); });
我在Windows上使用29.0.1537.0版本的金丝雀。