JavaScript - 设置日期方法



设置日期方法

JavaScript Set Date Methods 是链接到 JavaScript 中 Date 对象的功能,旨在简化日期和时间结构中特定元素的调整和修改。这些方法使开发人员能够有效地更新 Date 对象中的各个组件,例如年、月、日、小时和分钟,从而为在 JavaScript 应用程序中处理和操作与日期相关的值提供了一种便捷的方法。

在这里,我们将详细讨论这些 JavaScript 设置日期方法。下表包含最常用的设置日期方法及其相应的描述。

方法 描述
setFullYear(year) 设置 date 对象的年份。接受四位数的年份。调整日期;如果是闰年且日期为 2 月 29 日,则保留该日期;否则,它将更改为新年中最接近的有效期。
setMonth(month) 设置 date 对象的月份 (0-11)。接受数值 (0-11)。调整日期,如果月份值超出有效范围,则更改年份。
setDate(day) 设置 date 对象的月份日期 (1-31)。接受数值 (1-31)。调整日期,如果日期值超出当前月份的有效范围,则更改月份和年份。
setHours(hours) 该函数将日期对象的小时设置在 0-23 的范围内,仅接受数值。它会根据需要调整日期以保持有效性,除了时间之外,还可能会更改月份和年份。
setMinutes(minutes) 接受 0 到 59 之间的数字,并设置该特定日期对象的分钟数。它调整日期,使小时、日期、月份和年份成为有效的日期和时间。
setSeconds(seconds) 设置 date 对象的秒数 (0-59)。接受数值 (0-59)。调整日期,可能会更改分钟、小时、日期、月和年,以确保日期和时间有效。
setMilliseconds(ms) 设置 date 对象的毫秒数 (0-999)。接受数值 (0-999)。调整日期,可能会更改秒、分钟、小时、日期、月和年,以确保日期和时间有效。
setTime(milliseconds) 该函数设置自 1970 年 1 月 1 日以来的日期和时间(以毫秒为单位);它接受一个数值。然后,转换整个日期对象以反映提供的毫秒值。
setUTCFullYear(year) 将输入作为 4 位数字的年份,并考虑闰年调整协调世界时或 UTC。
setUTCMonth(month) 设置 date 对象的 UTC 月份 (0-11)。接受数值 (0-11)。调整协调世界时 (UTC) 中的日期,如果月份值超出有效范围,则可能会更改年份。
setUTCDate(day) 接受 1 到 31 之间的数值,并为该特定日期对象设置该月的 UTC 日期。它基本上是调整协调世界时 (UTC) 中的日期,如果日期值在当前月份的有效范围内,则更改月份和年份。
setUTCHours(hours) 设置日期对象的 UTC 小时 (0-23)。接受数值 (0-23)。调整协调世界时 (UTC) 中的日期,可能会更改日期、月份和年份,以确保日期和时间有效。
setUTCMinutes(minutes) 设置 date 对象的 UTC 分钟数 (0-59)。接受数值 (0-59)。调整协调世界时 (UTC) 中的日期,可能会更改小时、日期、月份和年份,以确保日期和时间有效。
setUTCSeconds(seconds) 设置 date 对象的 UTC 秒数 (0-59)。接受数值 (0-59)。调整协调世界时 (UTC) 中的日期,可能会更改分钟、小时、日期、月和年,以确保日期和时间有效。
setUTCMilliseconds(ms) 设置日期对象的 UTC 毫秒 (0-999)。接受数值 (0-999)。调整协调世界时 (UTC) 中的日期,可能会更改秒、分钟、小时、日期、月和年,以确保日期和时间有效。

例子

示例 1:set 方法的简单实现

我们采用 set 方法来修改各种日期组件,从而展示每种方法固有的多功能性。对当前日期的这些调整适用于不同的情况;它们不仅包括添加年、月和日,还包括小时——甚至分钟和毫秒。


<!DOCTYPE html>
<html>
<body>
	 	<div id="result"> 	
	 	 	 <p id="setFullYear"></p>
	 	 	 <p id="setMonth"></p>
	 	 	 <p id="setDate"></p>
	 	 	 <p id="setHours"></p>
	 	 	 <p id="setMinutes"></p>
	 	 	 <p id="setSeconds"></p>
	 	 	 <p id="setMilliseconds"></p>
	 	 	 <p id="setTime"></p>
	 	 	 <p id="setUTCFullYear"></p>
	 	 	 <p id="setUTCMonth"></p>
	 	 	 <p id="setUTCDate"></p>
	 	 	 <p id="setUTCHours"></p>
	 	 	 <p id="setUTCMinutes"></p>
	 	 	 <p id="setUTCSeconds"></p>
	 	 	 <p id="setUTCMilliseconds"></p>
	 	</div>
	 	<script>
	 	 	 const currentDate = new Date();
	 	 	 currentDate.setFullYear(currentDate.getFullYear() + 1);
	 	 	 document.getElementById("setFullYear").innerText = `setFullYear: ${currentDate.toDateString()}`;
	 	 	
	 	 	 currentDate.setMonth(currentDate.getMonth() + 2);
	 	 	 document.getElementById("setMonth").innerText = `setMonth: ${currentDate.toDateString()}`;
	 	 		
		 			 	currentDate.setDate(currentDate.getDate() + 5);
	 	 	 document.getElementById("setDate").innerText = `setDate: ${currentDate.toDateString()}`;
	
	 	 	 currentDate.setHours(currentDate.getHours() + 3);
	 	 	 document.getElementById("setHours").innerText = `setHours: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setMinutes(currentDate.getMinutes() + 15);
	 	 	 document.getElementById("setMinutes").innerText = `setMinutes: ${currentDate.toDateString()}`;
	 	 		
		 			 	currentDate.setSeconds(currentDate.getSeconds() + 30);
	 	 	 document.getElementById("setSeconds").innerText = `setSeconds: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setMilliseconds(currentDate.getMilliseconds() + 500);
	 	 	 document.getElementById("setMilliseconds").innerText = `setMilliseconds: ${currentDate.toDateString()}`;
	 	 		
		 			 	currentDate.setTime(currentDate.getTime() + 86400000); // 86400000 milliseconds in a day
	 	 	 document.getElementById("setTime").innerText = `setTime: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setUTCFullYear(currentDate.getUTCFullYear() + 1);
	 	 	 document.getElementById("setUTCFullYear").innerText = `setUTCFullYear: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setUTCMonth(currentDate.getUTCMonth() + 2);
	 	 	 document.getElementById("setUTCMonth").innerText = `setUTCMonth: ${currentDate.toDateString()}`;
	 	 		
		 			 	currentDate.setUTCDate(currentDate.getUTCDate() + 5);
	 	 	 document.getElementById("setUTCDate").innerText = `setUTCDate: ${currentDate.toDateString()}`;
	 	 	 	
		 			 	currentDate.setUTCHours(currentDate.getUTCHours() + 3);
	 	 	 document.getElementById("setUTCHours").innerText = `setUTCHours: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setUTCMinutes(currentDate.getUTCMinutes() + 15);
	 	 	 document.getElementById("setUTCMinutes").innerText = `setUTCMinutes: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setUTCSeconds(currentDate.getUTCSeconds() + 30);
	 	 	 document.getElementById("setUTCSeconds").innerText = `setUTCSeconds: ${currentDate.toDateString()}`;
		
	 	 	 currentDate.setUTCMilliseconds(currentDate.getUTCMilliseconds() + 500);
	 	 	 document.getElementById("setUTCMilliseconds").innerText = `setUTCMilliseconds: ${currentDate.toDateString()}`;
	 	</script>
</body>
</html>

示例 2:组合 Set Date 方法以进行复杂更新

复杂的日期操作结合了多种设置方法:例如,它通过添加两年来调整日期;减去 1 个月,然后加上 15 天。最后,精确无误地将时间设置为 18:30:45。


<!DOCTYPE html>
<html>
<body>
	 	<div id="result">
	 	 	 <h2>Complex Date Manipulation</h2>
	 	 	 <p id="complexManipulation"></p>
	 	</div>
	 	<script>
	 	 	 const currentDate = new Date();

	 	 	// 组合多个集合方法进行复杂的更新
	 	 	currentDate.setFullYear(currentDate.getFullYear() + 2);
	 	 	currentDate.setMonth(currentDate.getMonth() - 1);
	 	 	currentDate.setDate(currentDate.getDate() + 15);
	 	 	currentDate.setHours(18);
	 	 	currentDate.setMinutes(30);
	 	 	currentDate.setSeconds(45);

	 	 	document.getElementById("complexManipulation").innerText =	
		 	 	`Complex Manipulation Result: ${currentDate.toDateString()} ${currentDate.toTimeString()}`;
	 	</script>
</body>
</html>