Bootstrap数据表错误

时间:2016-01-20 09:45:02

标签: php jquery asp.net datatables

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
    }
}

0 个答案:

没有答案