dflmg

时间戳: 1480570979000

 

    $.ajax({
            
                url : "getOrderMsg?shiplabel="+ shiplabel,
                type : "get",    
                success : function(data) {//ajax返回的数据    
                    var now = new Date(data.createtime); //data.createtime=1480570979000
var years=now.getYear(); 
var year
= (years+"").substring(1);
var month
=now.getMonth()+1;
var date
=now.getDate();
var hour
=now.getHours();
var minute
=now.getMinutes();
var second
=now.getSeconds();
var date
= "20"+year+"-"+month+"-"+date+" "+hour+":"+minute+":"+second;
var html
="订单号:"+data.ordernumber+" 订单创建时间:"+date+" 收件人:"+data.shiptoname+" 电话:"+data.shiptophone+" 地址:"+data.addr;
$(
"#p1").html(html).show(); } });

 

分类:

技术点:

相关文章:

  • 2021-07-06
  • 2021-11-28
  • 2021-06-30
  • 2021-09-11
  • 2022-01-20
  • 2022-02-16
  • 2022-01-31
  • 2022-02-04
猜你喜欢
  • 2021-10-08
  • 2021-11-30
  • 2021-11-28
  • 2021-05-04
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案