浅谈bootstrap使用中的一些问题以及解决过程(2)

$t.find('thead > tr:first').children('th').each(function() { $th = $(this); cols.push($.extend( { text: $th.html(), flex: false || $th.hasClass('flex-col'), width: 'auto', cssClass: $th.attr('class'), colClass: $th.attr('class'), css: $th.attr('style'), type: 'string', ignore: $th.hasClass('ignore'), sort: !$th.hasClass('sort-disabled') }, $th.data())); });

修改:

row.data.push($.extend( { cssClass: $td.attr('class'), css: $td.attr('style'), text: $td.html(), colSpan: colSpan }, $td.data()));

为:

row.data.push($td.html());

测试

$('table.datatable').datatable({sortable: true});

成功初始化。排序可能正常。表格css正常。问题初步解决。

附:ZUI文档:

bootstrap文档:

做前端的难免遇到各种各样的问题。不要慌,一步步来,掌握了科学系统的发现问题和解决问题的方法,就能很快的锁定问题进而解决问题了。

以上就是小编为大家带来的浅谈bootstrap使用中的一些问题以及解决过程全部内容了,希望大家多多支持脚本之家~

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzdzpx.html