把时间戳转换为日期格式的js代码_实用技巧

复制代码 代码如下:

<script>    
function getLocalTime(nS) {    
   return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');    
}    
alert(getLocalTime(1293072805));    
</script>

结果是
2010年12月23日 10:53
第二种

复制代码 代码如下:

<script>    
function getLocalTime(nS) {    
    return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)}    
alert(getLocalTime(1293072805));    
</script>

如果你想得到这样格式的怎么办呢?
2010-10-20 10:00:00
看下面代码吧

复制代码 代码如下:

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

也可以这样写的

复制代码 代码如下:

function   formatDate(now)   {    
              var   year=now.getYear();    
              var   month=now.getMonth()+1;    
              var   date=now.getDate();    
              var   hour=now.getHours();    
              var   minute=now.getMinutes();    
              var   second=now.getSeconds();    
              return   year+"-"+month+"-"+date+"   "+hour+":"+minute+":"+second;    
              }    

              var   d=new   Date(1230999938);    
              alert(formatDate(d));

好了问题解决
需要注意的是
不要把字符串中的Date(这样的字符也传进去,要先处理一下,这样很方便 就能处理的
可以使用replace方法
如下:

复制代码 代码如下:

replace("/Date(","").replace(")/","");

时间: 2024-09-20 19:56:36

把时间戳转换为日期格式的js代码_实用技巧的相关文章

TextBox的宽度随输入的文本的大小而改变的js代码_实用技巧

复制代码 代码如下: <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"><!-- protect

把aspx页面伪装成静态html格式的实现代码_实用技巧

在 Global.asax 中添加 Application_BeginRequest 事件: 复制代码 代码如下: protected void Application_BeginRequest(object sender, EventArgs e) { string pathAndQuery = Request.Url.PathAndQuery.ToLower(); if (pathAndQuery.IndexOf(".html") > -1) { pathAndQuery =

正则匹配日期格式的js代码

<body> <input type="date" name="textfield" id="text1" > <input type="button" value="按钮" onClick="checkDate('text1')"> </body> js代码 function checkDate(fname){ var sc = $(&q

ASP读取日期单日期自动补零函数代码_应用技巧

复制代码 代码如下: public function fillzero(l1) if len(l1)=1 then fillzero="0"&l1 else fillzero=l1 end if end function 用法示例: 复制代码 代码如下: response year(now)&month(now)&day(now) 结果:201116 response year(now)&fillzero(month(now))&fillzero

最详细的ASP.NET微信JS-SDK支付代码_实用技巧

本文实例为大家分享了微信JS SDK支付的具体代码,供大家参考,具体内容如下 模型层实体类: public class JsEntities { /// <summary> /// 公众号id /// </summary> public string appId { get; set; } /// <summary> /// 时间戳 /// </summary> public string timeStamp { get; set; } /// <su

基于ASP.NET实现日期转为大写的汉字_实用技巧

这篇文章主要介绍的是利用ASP.NET将日期格式转为大写汉字,比如: "2013年12月3日" 转换成 "贰零壹叁年拾贰月叁日",下面一起来看看怎么实现. 一样话不多说,直接上代码 //年份转换为大写汉字 public static string numtoUpper(int num) { return "零壹贰叁肆伍陆柒捌玖"[num].ToString(); } //月份转换大写汉字 public static string monthtoU

.net mvc页面UI之Jquery博客日历控件实现代码_实用技巧

一.效果图 二.页面文件 页面上需要添加<div id="cal"></div>标记. 三.JS代码 复制代码 代码如下: // JavaScript 日历 $(document).ready(function () {     //当前时间     $now = new Date();                      //当前的时间     $nowYear = $now.getFullYear();          //当前的年     $now

asp.net 无刷新分页实例代码_实用技巧

数据类代码: 复制代码 代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Collections;using System.Reflection; namespace DAL{    public  class UserManageClass    {  

asp.net 仿腾讯微薄提示 还能输入*个字符 的实现代码_实用技巧

textbox如果设置TextMode="MultiLine"则 它的MaxLength设置的值就无效:为了能达到像腾讯微薄.新浪微薄那样的提示的效果(腾讯和新浪微薄文本框用到的应该是textarea),尝试如果不考虑用鼠标操作粘贴.删除textbox的内容,用jquery的keyup和keydown能实现,下面是实现的一个技巧,用到了js的计时器(当焦点在textbox中则"开启"计时器,失去焦点则"关闭"计时器),很好的解决了鼠标操作粘贴.删