我有上一个和下一个按钮的代码,但是当我使用它们时,除非我刷新页面,否则它们不会返回任何数据。是否像在其中添加一些代码以将 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;
});
});