$(function() { // Waves初始化 Waves.displayEffect(); // 数据表格动态高度 $(window).resize(function () { $('#table').bootstrapTable('resetView', { height: getHeight() }); }); }); // 动态高度 function getHeight() { return $(window).height() - 20; } // 数据表格展开内容 function detailFormatter(index, row) { var html = []; $.each(row, function (key, value) { html.push('

' + key + ': ' + value + '

'); }); return html.join(''); }