Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
341 views
in Technique[技术] by (71.8m points)

javascript - How to convert minutes to time(hh:mm:ss)?

My question is: How to convert minutes to time(hh:mm:ss)?

I have a value with:

decimalMinuteString="1.1783471074380165"

Expected output is: "00:01:10"

How to do with javascript/jquery?

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I needed to convert X minutes to HH:MM (Hours:Minutes), I used the following code to accomplish this:

MINUTES = X; //some integer

var m = MINUTES % 60;

var h = (MINUTES-m)/60;

var HHMM = h.toString() + ":" + (m<10?"0":"") + m.toString();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...