bootstrap的pages控件分页获取数据

本文介绍了如何结合bootstrap的pages控件和ajax技术进行分页数据的动态获取。通过在html中添加控件,利用ajax调用后台接口,接收并展示后台返回的数据。
摘要由CSDN通过智能技术生成
近期使用了bootstrap的pages控件和ajax来分页获取数据。学习了很多东西,记录下来。
  • 引用文件
<link href="__PUBLIC__/js/jBootstrapPage-master/jBootsrapPage.css" rel="stylesheet" />
<script src="__PUBLIC__/js/jBootstrapPage-master/jBootstrapPage.js"></script>
  • html文件添加控件
<div class="pages">
   <span>共{$totalCount}条</span>
   <div style="padding-left:100px;">
     <p id="pageIndex" style="font-size:20px;font-weight:bold;color:blue;margin-left:150px;"></p>
     <ul class="pagination"></ul>
    </div>
</div>
  • ajax调用后台接口获取数据
createPage(10, 10, 150);

function createPage(pageSize, buttons, total) {
 $(".pagination").jBootstrapPage({
    pageSize : pageSize,
    total : total,
    maxPageButton:buttons,
    onPageClicked: function(obj, pageIndex) {
        var searchNickname = $("#searchNickname")       .val();
        var searchTitle    = $("#searchTitle")          .val();
        var searchTag      = $("#searchTag")            .val(); 
        var isHotReplay    = $("#isHotReplayHideInput") .val(); 

        $.get("__URL__",{page:pageIndex+1,name:searchNickname,title:searchTitle,isHotReplay:isHotReplay},function(data){
                console.log(data);
                $(".adv-table").empty().append(data);
        });
    }
});
}
  • 后台返回数据
    //计算分页
    $page2 = $_REQUEST['page']=="" ?  0  : ($_REQUEST['page'] - 1) * 10;
    //返回已经查询出来的数据
    $this->assign ('searchTag',         $_REQUEST['tag']);
    $this->assign ('searchTitle',       $_REQUEST['title']);
    $this->assign ('searchNickname',    $_REQUEST['name']);
    $this->assign ('searchIsHotReplay', $_REQUEST['isHotReplay']);
    $_REQUEST['page'] != ''  
                      ?  $this->display('list')
                      :  $this->display ();
  • 通过tp返回的html文件
<table class="display table table-bordered table-striped" id="dynamic-table">
            <thead>
                    <tr>
                        <th style="width: 10%;">回放标题</th>
                        <th style="width: 10%;">播主</th>
                        <th style="width: 10%;">回放封面</th>
                        <th style="width: 10%;" class="hidden-phone">创建时间</th>
                        <th style="width: 10%;" class="hidden-phone">观看次数(展示/真实)</th>
                        <th style="width: 10%;" class="hidden-phone">精选</th>
                        <th style="width: 10%;" class="hidden-phone">标签</th>
                        <th style="width: 10%;" class="hidden-phone">排序</th>
                    </tr>
                    </thead>
                    <tbody>
                    <volist id="vo" name="list">
                        <tr class="gradeX">
                            <td>{$vo['title']} <button class="showReplayInfoBtn" onclick="showReplayInfoFunction(this)"  myvalue='{$vo[id]}'>详情</button>
                            </td>
                            <td>{$vo['nickName']}</td>
                            <td><a target="_blank" href="{$vo['shareURL']}"><img height='65px'
                                                                                 width='200px'
                                                                                 src="{$vo['streamIMG']}"/></a>
                            </td>
                            <td class="center hidden-phone">{$vo['cdate']}</td>
                            <td class="center hidden-phone">{$vo['lookCount']}/{$vo['lookCount']}</td>
                            <td class="center hidden-phone">{$vo['isHotReplay']}</td>
                            <td class="center hidden-phone"><input type="text" value="{$vo['tag']}"
                                                                   onblur="check132"></td>
                            <td class="center hidden-phone"><input type="number"
                                                                   value="{$vo['hotrank']}"
                                                                   onblur="check133"></td>
                        </tr>
                    </volist>
                    </tbody>
                </table>
Created with Raphaël 2.1.0 开始 用户点击分页按钮 前台ajax向后台发出请求获取第n页的数据 后台计算请求的数据并且返回table对应的html 用户得到所请求的分页数据
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值