本篇内容介绍了“怎么使用Date对象”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!Date对象怎么用那?首
本篇内容介绍了“怎么使用Date对象”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
Date对象怎么用那?
首先你要获得Date对象
得到微-信;
var d=new Date( );
在生成日期对象的时候,不传递任何参数默认返回当前时间;
var d=new Date( '2015/12/2');
在传入参数的情况下,获得的是传入的时间;
注:这个参数是字符串形式。
一些方法:
1.d.getFullYear() 获取当前的年份。|| d.setFullYear(2012) 返回1970年1月1日到设定时间毫秒数;
2.d.getMonth() 获取当前的月份(注:一个小BUG,当前的月份从0开始)||d.setMonth(9)返回1970年1月1日到当前年份的设定月份的毫秒数;
3.d.getDate()获取当前的日期 ||d.setDate() 同上;
4. getHours() 获取时
getMinutes() 获取分钟
getSeconds() 获取秒
各个机器获取的时间不同,因为该方法返回的是本机的时间;并不是国际标准时间;
5.日期的修改;
Date.parse("2015-08-24");获取1970年到设定时间的毫秒数;
d.getTime();获取1970年到当前时间的毫秒数;
d.setTime()
new Date(time)
创建一个日期对象,并指定时间 可以指定毫秒数
或者修改time属性, var d = new Date(); d.setTime(56521211021);
案例:
1.将日期格式化
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
<script>
function geshihua() {
var d = new Date();
var year = d.getFullYear();
var Month = d.getMonth() + 1;
var day = d.getDate();
var str = '当前时间是:' + year + '年' + Month + '月' + day + '日'
document.write(str);
}
geshihua()
</script>
</html>
获取某个月的天数:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
function days(year, month) {
var str = year + '/' + month + '/1';
var d = new Date(str);
var Month = d.getMonth();
var MonthMin = d.setMonth(Month);
var MonthMin2 = d.setMonth(Month + 1);
var MonthDay = MonthMin2 - MonthMin
alert(MonthDay / 24 / 60 / 60 / 1000)
}
days('2014', '2')
</script>
</head>
<body>
</body>
</html>
.计算日期差值
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.btn{
background:none;
border: 1px solid #b6b6b6;
display: block;
height: 40px;
margin: 40px auto;
}
</style>
</head>
<body>
<div id="div1">
<input type="text" placeholder='起始年份'>
<input type="text" placeholder='起始月份'>
<input type="text" placeholder='起始日'>||
<input type="text" placeholder='终止年份'>
<input type="text" placeholder='终止月份'>
<input type="text" placeholder='终止日'>
</div>
<input type="button" value='计算日期差距' onclick='jisuanriqi()'>
</body>
<script>
function jisuanriqi() {
var oDiv = document.getElementById('div1');
var ainput = oDiv.getElementsByTagName('input');
var qishiArr = [];
var zhongzhiArr = [];
for (var i = 0; i < aInput.length; i++) {
if (i < 3) {
qishiArr[i] = aInput[i].value;
} else {
zhongzhiArr[i] = aInput[i].value;
}
}
var str1 = qishiArr.join('/');
var str2 = zhongzhiArr.join('/');
var d1 = new Date(str1);
var d2 = new Date(str2);
alert(d1 + ":" + d2)
var days = Math.abs(d1.getTime() - d2.getTime()) / 1000 / 24 / 60 / 60;
alert(days)
}
</script>
</html>
“怎么使用Date对象”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!
--结束END--
本文标题: 怎么使用Date对象
本文链接: https://lsjlt.com/news/85449.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0