我在我的应用程序中使用了材料设计引导数据表。
https://datatables.net/examples/styling/material.html
Bootstrap的表单内联类与Datables样式冲突。
html
<table id="example" class="mdl-data-table" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
</tbody>
</table>
脚本
<script type="text/javascript">
$(document).ready(function() {
$('#example').DataTable( {
columnDefs: [
{
targets: [ 0, 1, 2 ],
className: 'mdl-data-table__cell--non-numeric'
}
]
} );
} );
</script>
我已经看到了这个解决方案
https://datatables.net/forums/discussion/40105/prevent-form-inline-class。
但是我得到这个错误。
jquery-3.1.1.min.js:2未捕获的ReferenceError:未定义表
实际将以下代码放在哪里?
$( table.table().container() ).removeClass( 'form-inline' );
最佳答案
试试这个代码
<script type="text/javascript">
$(document).ready(function() {
var table = $('#example').DataTable( {
columnDefs: [
{
targets: [ 0, 1, 2 ],
className: 'mdl-data-table__cell--non-numeric'
}
]
} );
$( table.table().container() ).removeClass( 'form-inline' );
} );
</script>