1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > js模仿php中strtotime()与date()函数实现方法【javascript】

js模仿php中strtotime()与date()函数实现方法【javascript】

时间:2018-12-11 08:48:13

相关推荐

js模仿php中strtotime()与date()函数实现方法【javascript】

web前端|js教程

js,模仿,php,strtotime,date

web前端-js教程

本文实例讲述了js模仿php中strtotime()与date()函数实现方法。分享给大家供大家参考。具体如下:

社区动力源码下载,vscode 微服务框架,ubuntu奔溃,tomcat 移型,sqlite3取所有信息,爬虫爬取网页百度文档,私信 php,每天发原创短句seo,好看的网站博客模板下载,自适应导航模板lzw

在js中没有像php中strtotime()与date()函数,可直接转换时间戳,下面我们来自定一个函数来实现js中具体有时间戳转换的功能。

织梦cms标签源码,pxe方式安装Ubuntu,镜像为什么比tomcat大,爬虫手机版软件,php判断这个月的天数,seo怎么搭建lzw

function datetime_to_unix(datetime){ var tmp_datetime = datetime.replace(/:/g,-); tmp_datetime = tmp_datetime.replace(/ /g,-); var arr = tmp_datetime.split("-"); var now = new Date(Date.UTC(arr[0],arr[1]-1,arr[2],arr[3]-8,arr[4],arr[5])); return parseInt(now.getTime()/1000); } function unix_to_datetime(unix) { var now = new Date(parseInt(unix) * 1000); return now.toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } var datetime = -11-16 10:36:50; var unix = datetime_to_unix(datetime); document.write(datetime+ 转换后的时间戳为: +unix+ ); var unix = 1353033300; var datetime = unix_to_datetime(unix); document.write(unix+ 转换后的日期为: +datetime);

如果想弹出:-10-20 10:00:00这个格式的也好办

帝国cms图片整站源码,vscode有mac版,ubuntu变debian,连接tomcat时很慢,osm爬虫,php 字符串加引号,肇庆seo网络推广专员,asp b2b网站源码,卷皮7.0模板lzw

function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); }alert(getLocalTime(1177824835));

完整实例

var day1 = parseInt(new Date().valueOf()/1000);var day2 = new Date(day1 * 1000);function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:d{1,2}$/, ); }/* 同上面函数 */function getLocalTimes(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17);} function getLocalFormatTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); }document.getElementById("btn1").onclick = function(){ alert(day1);}document.getElementById("btn2").onclick = function(){ alert(day2.toLocaleString());}document.getElementById("btn3").onclick = function(){ alert( getLocalTime(day1) );}document.getElementById("btn4").onclick = function(){ alert( getLocalFormatTime(day1) );}document.getElementById("btn5").onclick = function(){ alert(day2.getFullYear()+"-"+(day2.getMonth()+1)+"-"+day2.getDate()+" "+day2.getHours()+":"+day2.getMinutes()+":"+day2.getSeconds());}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。