JavaScript setDate 函数是 Date 函数之一,它用于根据本地时间设置给定日期的天数。setDate 函数的语法如下。
Date.setDate(Day_Number)
在这里,我们使用 setDate 函数将当前日期设置为 25 日。
<!DOCTYPE html>
<html>
<head>
<title> JS </title>
</head>
<body>
<h1> Example </h1>
<script>
var dt = Date();
document.write("Date and Time : " + dt + "<br/>");
dt.setDate(25);
document.write("After : " + dt);
</script>
</body>
</html>
Example
Date and Time: Mon Nov 05 2018 11:45:07 GMT+0530 (Indian Standard Time)
After : Sun Nov 25 2018 11:45:07 GMT+0530 (Indian Standard Time)
在此 set Date 函数示例中,我们将自定义日期的天数设置为 31。
<!DOCTYPE html>
<html>
<head>
<title> JS </title>
</head>
<body>
<h1> JavaScriptsetDateFunction Example </h1>
<script>
var dt = Date("December 1, 2016 10:11:22");
document.write("Date and Time : " + dt + "<br/>");
dt.setDate(31);
document.write("After setDate() : " + dt);
</script>
</body>
</html>

在此 JavaScript set Date 示例中,我们将自定义日期(无天或月)的天数设置为 31。
<!DOCTYPE html>
<html>
<head>
<title> JS </title>
</head>
<body>
<h1> Example3 </h1>
<script>
var dt = Date("2016 10:11:22");
document.write("DateTime : " + dt + "<br/>");
dt.setDate(31);
document.write("After : " + dt);
</script>
</body>
</html>
Example3
DateTime: Fri Jan 01 2016 10:11:22 GMT+0530 (Indian Standard Time)
After: Sun Jan 31 2016 10:11:22 GMT+0530 (Indian Standard Time)