PhoneGapアプリのリンクにライブ イベントをバインドしています。イベントは正常に発生しますが ( alert()ing で確認)、タッチ データがイベント オブジェクトに添付されていないようです。touchstartこれは、 、touchmove、およびのすべてのタッチ イベントで発生しますtouchend。
$('a').live('touchend', function(event) {
event.preventDefault();
alert(event.touches.length); // event.touches should be populated!
});
何か案は?私は jQuery.live() で SOL ですか?