有谁知道 Chrome Canary 是否删除了 e.originalEvent.touches?在 Chrome Stable 中运行以下脚本会返回 1,而在 Chrome Canary 中会返回错误(Uncaught TypeError: Cannot read property 'length' of undefined)。
jQuery(document).on('touchstart', function(e){ console.log(e.originalEvent.touches.length); });
我在 Windows 上使用版本 29.0.1537.0 canary。