JavaScript 通过比较过期日期更改或更新HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 通过比较过期日期更改或更新HTML相关的知识,希望对你有一定的参考价值。

var now = new Date();
	var year, month, day, mins, sec;

		//get the current date          //add a zero for single digit values
		year    = now.getFullYear();    if (year < 1000) {year +- 1900;}
		month   = now.getMonth() + 1;   if (month < 10) {month = "0" + month;}
		day     = now.getDate();        if (day < 10) {day = "0" + day;}
		hrs     = now.getHours();       if (hrs < 10) {day = "0" + hrs;}
		mins    = now.getMinutes();     if (mins < 10) {mins = "0" + mins;}
		sec     = now.getSeconds();     if (sec < 10) {sec = "0" + sec;}

	//concatenate the dates into a string
	var current	= String(year) + String(month) + String(day) + String(hrs) + String(mins) + String(sec);
	//convert current time(string) to a number to compare values
	var curr	= Number(current);

	// dates represent expiration dates (YYYY MM DD HH MM SS)
	var A	= 20101203160800;
	var B	= 20101203161400;
	var C	= 20101203152900;

	if (A > curr) {
		$('#status').html('This is A');
	}
	else if (B > curr) {
		$('#status').html('This is B');
	}
	else if (C > curr) {
		$('#status').html('This is C');
	}
	else {
		$('#status').html('Everything Has Expired');
	}

以上是关于JavaScript 通过比较过期日期更改或更新HTML的主要内容,如果未能解决你的问题,请参考以下文章

Wicket:通过 Javascript 更新文本字段

iphone 应用程序:如何通过 iOS 配置门户更新过期的分发证书

如何根据条件更改 DataGridView 的行颜色以检查日期是不是过期

没有过期日期的 Javascript Cookie

如何让一个安卓APP在固定时间后过期[关闭]。

仅当记录通过数据修改而更新时才更新日期