EasyUI[Jquery]将时间戳转化为时间格式

来源:互联网 发布:长城宽带独享端口 编辑:程序博客网 时间:2024/05/23 23:07
formatter: function(value,row,index){
                    if (value){
                        return new Date(parseInt(value) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");
                    }else{
                        return '';

                    }

}

原创粉丝点击