日常问题处理

Posted detanx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日常问题处理相关的知识,希望对你有一定的参考价值。

一、时间戳转yyyy-mm-dd HH:MM:SS日期类型

function timetrans(date){
    var date = new Date(date*1000);//如果date为10位不需要乘1000
    var yyyy = date.getFullYear() + ‘-‘;
    var mm = (date.getMonth()+1 < 10 ? ‘0‘+(date.getMonth()+1) : date.getMonth()+1) + ‘-‘;
    var dd = (date.getDate() < 10 ? ‘0‘ + (date.getDate()) : date.getDate()) + ‘ ‘;
    var HH = (date.getHours() < 10 ? ‘0‘ + date.getHours() : date.getHours()) + ‘:‘;
    var MM = (date.getMinutes() <10 ? ‘0‘ + date.getMinutes() : date.getMinutes()) + ‘:‘;
    var SS = (date.getSeconds() <10 ? ‘0‘ + date.getSeconds() : date.getSeconds());
    return yyyy+mm +dd+HH +MM +SS ;
}

二、css设置表格超出部分省略号显示无效

1、正常设置

table{
  table-layout: fixed;  
}
td{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;   
     -moz-text-overflow: ellipsis;
}

二、当设置width为百分比,并且另外仅设置了min-width时,设置上述的样式不起作用

table {
    table-layout:fixed;    
}
td{
    width: 23%;
    min-width: 97px;
    text-align: center;
    border-left: 1px solid #ccc;
    word-break: break-all;
    text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

 技术分享图片

 

三、为td添加max-width

table {
    table-layout:fixed;    
}
td{
    width: 23%;
    min-width: 97px;
    max-width:80px;
    text-align: center;
    border-left: 1px solid #ccc;
    word-break: break-all;
    text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

  技术分享图片

 

以上是关于日常问题处理的主要内容,如果未能解决你的问题,请参考以下文章

15种Python片段去优化你的数据科学管道

sublimetext3中保存代码片段

尝试将 Vlookup 片段添加到我的 Excel 宏

处理屏幕旋转上的片段重复(带有示例代码)

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

你如何在 python 中处理 graphql 查询和片段?