Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 flexigrid 与 PHP 一起使用,我想要的是在只有 1 页时隐藏寻呼机,如果页面超过 1 则显示寻呼机。我认为如果我可以在运行时隐藏或显示寻呼机,这可以解决我试过下面的代码但它不工作
IE$("#div").flexReload({usepager:true});
$("#div").flexReload({usepager:true});
尝试
$('#div') .flexOptions({ usepager:true }) .flexReload();