/* 获取系统的当前年数*/
function GetYear() {
var today = new Date();
return today.getFullYear();
};
/*获取系统的当前的月数*/
function GetMonth() {
var today = new Date();
return today.getMonth() + 1; ;
};
/*获取系统的当前的天数*/
function GetDay() {
var today = new Date();
return today.getDate(); ;
};
/*获取系统的当前的小时*/
function GetHours() {
var today = new Date();
return today.getHours();
};
/*获取系统的当前的分钟*/
function GetMinute() {
var today = new Date();
return today.getMinutes();
};
/*获取系统的当前的秒数*/
function GetSecond() {
var today = new Date();
return today.getSeconds();
};
/************************************************************
*函数名:TimeSubMillisecond
*参数:endtime(结束时间) starttime(起始时间)
*功能:获取两个时间的毫秒级的差值,必须写一个参数 第二个参数(起始时间)可以
*不写默认是系统当前时间
************************************************************/
function TimeSubMillisecond(endtime, starttime) {
var end = new Date(endtime).getTime();
if (!endtime) {
return -1;
}
if (!starttime) {
start = new Date().getTime();
}
else {
start = new Date(starttime).getTime();
}
if (start > end) {
return -1;
}
else {
return end - start;
}
};
/************************************************************
*函数名:TimeSubNormal
*参数:endtime(结束时间) starttime(起始时间)
*功能:获取两个时间的差值,必须写一个参数 第二个参数(起始时间)可以
*不写默认是系统当前时间
************************************************************/