phonegap/jquery モバイル アプリを作成しており、swipeButton プラグインを使用して、スワイプによる削除アクションをシミュレートしています ( https://github.com/commadelimited/jquery.swipeButton.js )。
ただし、追加されたliにプラグイン機能を付けるのに苦労しています。
誰かが私を正しい方向に向けることができますか?
私のコードは次のとおりです。
$('#recordings-list').append('<li data-corners="false" data-shadow="false" data-iconshadow="true" data-icon="arrow-r" data-iconpos="right" class="ui-btn-icon-right ui-li-has-arrow"><a href="#view" class="ui-link-inherit" data-transition="slidefade">'
+ '<p class="ui-li-aside"><strong>' + resultString + '</strong> <br/> <span class="sync-label">' + syncStatus + '</span></p>'
+ '<h3 class="ui-li-heading">' + results.rows.item(i).name + '</h3>'
+ '<p class="ui-li-desc"><strong>' + results.rows.item(i).notes + '</strong></p>'
+ '<p class="ui-li-desc"> ' + results.rows.item(i).description + '</p>'
+ '</a></li>').swipeDelete({
direction: 'swiperight', // standard jquery mobile event name
btnLabel: 'Delete',
btnTheme: 'b',
btnClass: 'aSwipeBtn',
click: function(e){
e.preventDefault();
alert("Swipey McSwipeo");
}
});