如何设置确定的一天
如何设置2017年10月1号应该用setTime( )怎么写
如何设置2017年10月1号应该用setTime( )怎么写
2017-07-31
这个是用setFullYear()方法设置时间
<html>
<body>
<script type="text/javascript">
var d = new Date()
d.setFullYear(2017,10,1);
document.write(d)
</script>
</body>
</html>
这个是用setTime()方法设置时间
<html>
<body>
<script type="text/javascript">
var d = new Date();
document.write(d+"<br/>");
d.setTime(d.getTime()+61*24*60*60*1000);
document.write(d)
</script>
</body>
</html>
举报