在舊版本YUI的,這是不可能的,模擬的TouchEvent(touchstart/touchmove/touchend),因爲我們可以在官衣網站閱讀:http://yuilibrary.com/yui/docs/event/simulate.html(無觸摸事件部分)是否可以在YUI 3.6.0上模擬touchevent?
但在YUI的最後一個版本(3.6.0)似乎可以模擬touchevent。當你看這個文件:http://yuilibrary.com/yui/docs/api/files/event-simulate_js_event-simulate.js.html#l60,腳本中實現了touchevents。
如果你看這個帖子:http://www.yuiblog.com/blog/2012/08/10/twiy/; YUI接受關於手勢模擬的拉取請求。
但是當我這樣做:
Y.one('mydiv').simulate('touchstart');
我有這樣的信息:
Error: simulate(): Event 'touchstart' can't be simulated. Use gesture-simulate module instead.
所以我儘量用 「gesturemovestart」 做
Y.one('mydiv').simulate('gesturemovestart');
,但我有這個消息:
Event 'gesturemovestart' can't be simulated
那麼,有誰知道它是否可以模擬YUI上的touchevent,如果是的話,爲什麼我會有這個錯誤?