前と次のボタンにこのコードがありますが、それらを使用すると、ページを更新しない限りデータが返されません。これにいくつかのコードを追加してajaxをfalseにするのと同じくらい簡単ですか、それともより良い解決策がありますか? そして、これはどのように扱われるべきですか?ありがとう。
$links.each(function)
{
var reverse = $(this).closest("." + prevLIClass).length;
$(this).buttonMarkup(
{
"role" : "button",
"theme" : "d",
"iconpos" : "notext",
"icon" : "arrow-" + (reverse ? "1" : "r")
})
.bind("vclick", function()
{
$.mobile.changePage($(this).attr("href"),{reverse : reverse});
return false;
});
});