有人知道Chrome Canary是否移除了e.originalEvent.touches吗?在Chrome稳定中运行以下脚本返回1,在Chrome Canary中返回错误(未捕获TypeError:无法读取未定义的属性'length‘)。
jQuery(document).on('touchstart', function(e){ console.log(e.originalEvent.touches.length); });我在Windows上的版本是29.0.1537.0 canary。
发布于 2013-06-15 00:15:33
看起来像是浏览器的漏洞。售票地址:https://code.google.com/p/chromium/issues/detail?id=249494
https://stackoverflow.com/questions/17094447
复制相似问题