码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 将 ThinkPHP 分页自动转换为 bootstrap 分页

时间:2014-09-27 15:29:50      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:javascript   thinkphp   bootstrap   

#写的一个通用的,将thinkphp生成的分页HTML,自动转换为 bootstrap 分页:

/**
 * @author default7#zbphp.com
 * @description 将ThinkPHP的分页转换为 bootstrap分页
 * @param selector
 */
function initPagination(selector) {
    selector = selector || '.page';
    $(selector).each(function (i, o) {
        var html = '<ul class="pagination">';
        $(o).find('a,span').each(function (i2, o2) {
            var linkHtml = '';
            if ($(o2).is('a')) {
                linkHtml = '<a href="' + ($(o2).attr('href') || '#') + '">' + $(o2).text() + '</a>';
            } else if ($(o2).is('span')) {
                linkHtml = '<a>' + $(o2).text() + '</a>';
            }

            var css = '';
            if ($(o2).hasClass('current')) {
                css = ' class="active" ';
            }

            html += '<li' + css + '>' + linkHtml + '</li>';
        });

        html += '</ul>';
        $(o).html(html).fadeIn();
    });
}


javascript 将 ThinkPHP 分页自动转换为 bootstrap 分页

标签:javascript   thinkphp   bootstrap   

原文地址:http://blog.csdn.net/default7/article/details/39611421

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!