WP7 Mango中的IE是否支持iOS或Android之类的Touch事件?触摸事件似乎将成为W3C中的标准:http://dvcs.w3.org/hg/webevents/raw-file/tip/touchevents.html。 IE 9表示它遵循标准,有人知道它是否将支持触摸事件吗?谢谢。

最佳答案

它目前不支持触摸事件。您需要做的所有事情来证明这是简单的事情,例如:

document.ontouchstart = function() { alert("TS"); }
document.ontouchmove = function() { alert("TM"); }
document.ontouchend = function() { alert("TE"); }

这些都不会在IE9移动版中触发。

09-20 21:03