首页 > 代码库 > javascript 将 ThinkPHP 分页自动转换为 bootstrap 分页

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=http://www.mamicode.com/"' + ($(o2).attr('href') || '#') + '">' + $(o2).text() + '';>

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