最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Passing Date argument to function - Stack Overflow

programmeradmin1浏览0评论

How to pass argument of Date to another function? My code:

var myDate = new Date(data.GetOPCResult.DateTime.match(/\d+/)[0] * 1);
var datlabel = document.getElementById("ct");
datlabel.innerHTML = GetTime(myDate);

And GetTime function code:

function GetTime(DateTime) {
    var month = (DateTime.getMonth() < 10) ? "0" + (DateTime.getMonth() + 1) : (DateTime.getMonth() + 1);
    var day = (DateTime.getDate() < 10) ? "0" + DateTime.getMonth() : DateTime.getMonth();
    var hour = (DateTime.getHours() < 10) ? "0" + DateTime.getHours() : DateTime.getHours();
    var minute = (DateTime.getMinutes() < 10) ? "0" + DateTime.getMinutes() : DateTime.getMinutes();
    var second = (DateTime.getSeconds() < 10) ? "0" + DateTime.getSeconds() : DateTime.getSeconds();
    return DateTime.getDate() + "." + month + "." + DateTime.getFullYear() + " " + hour + ":" + minute + ":" + second;
}

How to pass argument of Date to another function? My code:

var myDate = new Date(data.GetOPCResult.DateTime.match(/\d+/)[0] * 1);
var datlabel = document.getElementById("ct");
datlabel.innerHTML = GetTime(myDate);

And GetTime function code:

function GetTime(DateTime) {
    var month = (DateTime.getMonth() < 10) ? "0" + (DateTime.getMonth() + 1) : (DateTime.getMonth() + 1);
    var day = (DateTime.getDate() < 10) ? "0" + DateTime.getMonth() : DateTime.getMonth();
    var hour = (DateTime.getHours() < 10) ? "0" + DateTime.getHours() : DateTime.getHours();
    var minute = (DateTime.getMinutes() < 10) ? "0" + DateTime.getMinutes() : DateTime.getMinutes();
    var second = (DateTime.getSeconds() < 10) ? "0" + DateTime.getSeconds() : DateTime.getSeconds();
    return DateTime.getDate() + "." + month + "." + DateTime.getFullYear() + " " + hour + ":" + minute + ":" + second;
}
Share Improve this question edited Aug 24, 2011 at 10:03 amaranth asked Aug 24, 2011 at 9:56 amaranthamaranth 9792 gold badges22 silver badges40 bronze badges 4
  • 4 You already did it correctly (regarding the syntax). If your code does "not work" then you have to tell us exactly what happens and what should happen. – Felix Kling Commented Aug 24, 2011 at 9:59
  • 1 In function GetTime(Date) - you don't use your Date parameter so the myDate that you pass in in datlabel.innerHTML = GetTime(myDate); is not used inside the function. – ZenMaster Commented Aug 24, 2011 at 10:02
  • I just refresh my example code. Replace Date with DateTime... – amaranth Commented Aug 24, 2011 at 10:04
  • In latest Chrome 13 I'm get Uncaught TypeError: Cannot call method 'getMonth' of undefined. What is wrong? – amaranth Commented Aug 24, 2011 at 10:07
Add a ment  | 

2 Answers 2

Reset to default 4

This works for me

function GetTime(d) {
    var month = (d.getMonth() < 10) ? "0" + (d.getMonth() + 1) : (d.getMonth() + 1);
    var day = (d.getDate() < 10) ? "0" + d.getMonth() : d.getMonth();
    var hour = (d.getHours() < 10) ? "0" + d.getHours() : d.getHours();
    var minute = (d.getMinutes() < 10) ? "0" + d.getMinutes() : d.getMinutes();
    var second = (d.getSeconds() < 10) ? "0" + d.getSeconds() : d.getSeconds();

    return d.getDate() + "." + month + "." + d.getFullYear() + " " + hour + ":" + minute + ":" + second;
}

alert(GetTime(new Date()));

Are you sure you are passing a valid Date object? Try passing new Date() instead of myDate to your GetTime. If that works, your myDate variable is not a valid Date object.

Your code is fine. A little re-factoring will help though.

function GetTime(date) {
    var day = zeroPad(date.getDate(), 2);
    var month = zeroPad(date.getMonth() + 1, 2);
    var year = zeroPad(date.getFullYear(), 4);
    var hour = zeroPad(date.getHours(), 2);
    var minute = zeroPad(date.getMinutes(), 2);
    var second = zeroPad(date.getSeconds(), 2);
    return day + "." + month + "." + 
        year + " " + hour + ":" + 
        minute + ":" + second;
}

function zeroPad(num, count) {
    var z = num + '';
    while (z.length < count) {
        z = "0" + z;
    }
    return z;
}

Also please check what is data.GetOPCResult.DateTime. I would say this will do.

var myDate = new Date( (data.GetOPCResult.DateTime || "")
                .replace(/-/g,"/")
                .replace(/[TZ]/g," ") );
发布评论

评论列表(0)

  1. 暂无评论