table表头不换行并允许横向滚动

一、滚动条一直显示

在< td>中加入nowrap=”nowrap”即可实现内容不换行的效果;滚动条效果需要通过设置overflow来实现。

<div id="test" style="width: 800px; height: 80px; overflow-x: auto;overflow-y: hidden">
    <table>
        <tr>
            <th nowrap="nowrap" style="padding-left:10px;padding-right:30px;">车辆的呼号</th>
            <th nowrap="nowrap" style="padding-right:10px;">值班中队长</th>
            <th nowrap="nowrap" style="padding-right:10px;">白天值班的老哥</th>
            <th nowrap="nowrap" style="padding-right:10px;">晚上值班的老哥</th>
            <th nowrap="nowrap" style="padding-right:30px;">排班时间</th>
            <th nowrap="nowrap" style="padding-right:10px;">状态</th>
            <th nowrap="nowrap" style="padding-right:30px;">车辆的呼号</th>
            <th nowrap="nowrap" style="padding-right:10px;">值班中队长</th>
            <th nowrap="nowrap" style="padding-right:10px;">白天值班的老哥</th>
            <th nowrap="nowrap" style="padding-right:10px;">晚上值班的老哥</th>
            <th nowrap="nowrap" style="padding-right:30px;">排班时间</th>
            <th nowrap="nowrap" style="padding-right:10px;">状态</th>
        </tr>
        <tr>
            <td style="padding-left:10px;">item.callsign</td>
            <td> item.dutyoffice </td>
            <td> item.daylaoge </td>
            <td> item.nightlaoge </td>
            <td> item.date </td>
            <td> item.status </td>
            <td> item.callsign </td>
            <td> item.dutyoffice </td>
            <td> item.daylaoge </td>
            <td> item.nightlaoge </td>
            <td> item.date </td>
            <td> item.status </td>
        </tr>
    </table>;
</div>

对< td>设置padding属性时,根据不同的框架和浏览器,padding有时会不起效果,对于这种情况我们可以在< td>中加个< div>标签,代码如下:

<td><div style='display:inline-block;width:10px'></div> item.dutyDate </td>

二、滚动条先隐藏鼠标移过才显示

有时候为了美观,要先把滚动条隐藏起来,等鼠标移到元素上之后再显示滚动条,鼠标离开滚动条就恢复隐藏状态。

<script type="text/javascript">
    $(document).ready(function(){
        $("#dutyControl").hover(function () {
            //$("#dutyControl").css("overflow-x", "auto");
            $("#dutyControl").css("overflow", "auto");
        }, function () {
            //$("#dutyControl").css("overflow-x", "hidden");
            $("#dutyControl").css("overflow", "hidden");
        });
    });
</script>
<div id="dutyControl" style="width: 800px; height: 80px; overflow-x: hidden;overflow-y: hidden">
    <table>
        <tr>
            <th nowrap="nowrap" style="padding-left:10px;padding-right:30px;">车辆的呼号</th>
            <th nowrap="nowrap" style="padding-right:10px;">值班中队长</th>
            <th nowrap="nowrap" style="padding-right:10px;">白班的辅警</th>
            <th nowrap="nowrap" style="padding-right:10px;">夜班的辅警</th>
            <th nowrap="nowrap" style="padding-right:30px;">排班时间</th>
            <th nowrap="nowrap" style="padding-right:10px;">状态</th>
            <th nowrap="nowrap" style="padding-right:30px;">车辆的呼号</th>
            <th nowrap="nowrap" style="padding-right:10px;">值班中队长</th>
            <th nowrap="nowrap" style="padding-right:10px;">白班的辅警</th>
            <th nowrap="nowrap" style="padding-right:10px;">夜班的辅警</th>
            <th nowrap="nowrap" style="padding-right:30px;">排班时间</th>
            <th nowrap="nowrap" style="padding-right:10px;">状态</th>
        </tr>
        <tr>
            <td style="padding-left:10px;">item.callsign</td>
            <td> item.dutyoffice </td>
            <td> item.daystaff </td>
            <td> item.nightstaff </td>
            <td> item.date </td>
            <td> item.status </td>
            <td> item.callsign </td>
            <td> item.dutyoffice </td>
            <td> item.daystaff </td>
            <td> item.nightstaff </td>
            <td> item.date </td>
            <td> item.status </td>
        </tr>
    </table>
</div>
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

changuncle

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值