详细介绍c#时间戳和js时间戳互转方法的代码分享
下面小编就为大家带来一篇js时间戳和c#时间戳互转方法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
实例如下:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Newtonsoft.Json; namespace TestWeb { public partial class ajax : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { //TestAjax() } } public void TestAjax() { var phone = Request.Form["phone"]; var authcode = Request.Form["authcode"]; var pt = Request.Form["pt"]; //js时间戳 new Date().getTime() eg: 1429503106452 string outputmsg = string.Empty; if (phone != null && authcode != null && pt != null) { DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); //说明下,时间格式为13位后面补加4个"0",如果时间格式为10位则后面补加7个"0" long lTime = long.Parse(pt + (pt.Length == 13 ? "0000" : "0000000")); TimeSpan toNow = new TimeSpan(lTime); DateTime dtResult = dtStart.Add(toNow); //得到转换后的时间 string str = dtResult.ToString(); outputmsg = OutMsg(new ResponseInfo { success = true, tag = 100, msg = "成功" }); } Response.Write(outputmsg); } public long GetCurrentTicksForJs() { System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); DateTime dtResult = DateTime.Now;//获取时间 long t = (dtResult.Ticks - startTime.Ticks) / 10000;//除10000调整为13位 return t; } public string OutMsg(object obj) { return JsonConvert.SerializeObject(obj, Newtonsoft.Json.Formatting.Indented); } public class ResponseInfo { public bool success { get; set; } public int tag { get; set; } public string msg { get; set; } } //... } }<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ajax.aspx.cs" Inherits="TestWeb.ajax" %> <script type="text/javascript"> var d = new Date(<%=GetCurrentTicksForJs() %>); alert(formatDate(d)); function formatDate(now) { var year = now.getFullYear(); var month = now.getMonth() + 1; var date = now.getDate(); var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); return year + "-" + (month.toString().length ==1 ? "0"+month : month) + "-" + (date.toString().length ==1 ? "0"+date : date) + " " + hour + ":" + minute + ":" + second; } </script> var date = new Date(1459481266695); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); console.log(Y+M+D+h+m+s); VM307:9 2016-04-1 11:27:46
登录后复制
以上是详细介绍c#时间戳和js时间戳互转方法的代码分享的详细内容。更多信息请关注PHP中文网其他相关文章!
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影:贝壳谜语解决方案
1 周前
By DDD
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解锁Myrise中的所有内容
3 周前
By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

使用 C# 的 Active Directory 指南。在这里,我们讨论 Active Directory 在 C# 中的介绍和工作原理以及语法和示例。
