Bootnation数据表在Pagenation中不正确,例如你的'tr'32计数然后显示分页数是10,这段代码 @Override
protected JSONObject doInBackground(String... params) {
JSONParser jParser = new JSONParser();
JSONObject json = jParser.getJSONFromUrl(params[0]);
....
}
和结果是3但是这个结果不是Currect因为计数页面是3和2行不显示。这是Bootstrap数据表中的错误
Math.round(32/10)
我更改此代码然后执行正确,此代码正确:
function m(e) {
if (o) {
n = Math.round(e.children(".search-item").length / r)
} else {
n = Math.round((e.children("tr").length ) / r); /// This Line
} if (n == 0) {
n = 1
}
}