私はこれを使用しています:
$('.sizeChart').on('vclick', '.entry .ui-btn', function(e){
console.log( e )
console.log( e.currentTarget )
console.log( $( e.currentTarget )
console.log( $( e.currentTarget ).find('input.qtyInput') )
var qty = $( e.currentTarget ).find('input.qtyInput');
// do something
});
これは機能しますが、$( e.currentTarget ).find(...)
私には厄介なようです。
input
数回クリックすると iOS3+4 でバインドが無効になるため、直接バインドすることはできません。全体を通して最も近いui-btn
作品へのバインディング。
質問:
私が使用しているものよりも優れた/簡単/高速なバインド方法はありますか?