如何使大表响应
Posted
技术标签:
【中文标题】如何使大表响应【英文标题】:How to make a large table responsive 【发布时间】:2018-03-30 16:29:55 【问题描述】:我的表格在桌面上显示良好,但是一旦我尝试查看移动版本,我的表格最终对于移动设备屏幕来说太宽了。我正在使用响应式布局。 如何设置此表在手机中正常显示 这是我的代码
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class="row clearfix">
<div class="col-xs-12">
<div class="card">
<div class="body">
<div class="table-responsive">
<table id="myTable" class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
【问题讨论】:
看看这个方法css-tricks.com/examples/ResponsiveTables/responsive.php 【参考方案1】:朋友们,不要试图与金融争斗。也许您可以使用媒体查询隐藏不太重要的列,显示 3 而不是 6
【讨论】:
【参考方案2】:另一个选项可能是通过添加 overflow-x:auto 来启用表格的水平滚动;到父 div 的样式表。
div.table-responsive
overflow-x:auto;
【讨论】:
以上是关于如何使大表响应的主要内容,如果未能解决你的问题,请参考以下文章
使用 where 子句过滤大表中的数据返回“响应太大...”错误