我想在显示屏上看到 CurrentTime 分钟和秒视频。
var id = $('#main_video_player');
alert(id.get(0).currentTime); //worked i see '12.324543356'
var minnow=id.get(0).currentTime.split('.')[0];
alert(minnow); //not worked
var secnow=id.get(0).currentTime.split('.')[1].substr('0','1');
alert(secnow); //not worked
谢谢大家的帮助=)
显示秒的正确代码:
alert(time.toString().split('.')[0]);
以小时、分钟和秒为单位显示正确时间的代码:
var id = $('#video');
timenow=id.get(0).currentTime;
if (parseInt(timenow)/60>=1) {
var h = Math.floor(timenow / 3600);
timenow = timenow - h * 3600;
var m = Math.floor(timenow / 60);
var s = Math.floor(timenow % 60);
if(h.toString().length<2){h='0'+h;}
if(m.toString().length<2){m='0'+m;}
if(s.toString().length<2){s='0'+s;}
alert(h+' : '+m+' : '+s);
} else {
var m = Math.floor(timenow / 60);
var s = Math.floor(timenow % 60);
if(m.toString().length<2){m='0'+m;}
if(s.toString().length<2){s='0'+s;}
alert(m+' : '+s);
}