dbからデータを取得し、phonegapを使用してリストに表示しました。戻るボタンをクリックすると、senchatouchで行った別のリストに移動するはずです。どうすればよいですか。
function querySuccess(tx,result){
$('#Allwordslist').empty();
$.each(result.rows,function(index){
var row = result.rows.item(index);
$('#Allwordslist').append('<li><a href="#"><h3 class="ui-li-heading">'+row['Word']+'</h3><p class="ui-li-desc">'+row['Type_Of_Word']+'</p></a></li>');
});
$('#Allwordslist').listview();
}