Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
backbonejs ビューでタッチ ベースのイベントを実装する必要があります。私はhammer jqueryの特別なイベントを試しましたが、うまくいきませんでした。
それをjqueryプラグインとして使用し、通常はeventsプロパティを使用して設定し、目的の要素でこれらのイベントをリッスンします
events: { 'tap': 'onTap', 'hold .dragging-handle': 'onHold' // etc... }, onTap: function(e) { // do whatever with the event data }