DATE日期··MATH对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DATE日期··MATH对象相关的知识,希望对你有一定的参考价值。

1.Date日期

--Date 对象用于处理日期和时间。

Date 对象的语法:

var myDate=new Date()

2.Date 对象方法

eg:

<style type="text/css">
#date{
width: 400px;
height: 30px;
}

</style>
<body>
<input type="text" id="date">
<input type="button" value="当前日期" id="btn">
<input type="button" value="获得年月日时分秒" id="btn1">

</body>
<script type="text/javascript">
var date=document.getElementById("date");
var btn=document.getElementById("btn");
var btn1=document.getElementById("btn1");

btn.onclick=function(){
date.value= Date();//返回当前日期
};

btn1.onclick=function(){
var nDat=new Date();
date.value=nDat.getDate();//当前月份的某一天,1--31的整数
date.value=nDat.getMonth();//月份,1--11的整数
date.value=nDat.getFullYear();//四位数年份
date.value=nDat.getHours();//小时
date.value=nDat.getMinutes();//分钟
date.value=nDat.getSeconds();//秒
date.value=nDat.getMilliseconds();//毫秒

date.value=nDat.getMonth()+1;//月份,1--11的整数
var b=date.value;
date.value="现在时刻:"+
nDat.getFullYear()+"年"+b+"月"+nDat.getDate()+"日"+
nDat.getHours()+"点"+nDat.getMinutes()+"分" +nDat.getSeconds()+"秒"+
nDat.getMilliseconds();
};

var nDat=new Date();
var seDat= "现在时刻:"+
nDat.setFullYear(1970)+"年"+nDat.setMonth(1)+"月"+nDat.setDate(1)+"日"+
nDat.setHours(12)+"点"+nDat.setMinutes(12)+"分" +nDat.setSeconds(12)+"秒"+
nDat.setMilliseconds(12);
document.write(nDat);
</script>

3.Math 对象

--Math 对象用于执行数学任务。

Math 的属性和方法的语法:

var pi_value=Math.PI;
var sqrt_value=Math.sqrt(15);

4.Math 对象方法

<script type="text/javascript">
document.write("PI圆周率:"+Math.PI+"<br>");
document.write("ceil上舍入(12.253):"+Math.ceil(12.253)+"<br>");
document.write("floor下舍入(12.253):"+Math.floor(12.253)+"<br>");
document.write("round四舍五入(12.253):"+Math.round(12.253)+"<br>");
document.write("round四舍五入(12.53):"+Math.round(12.53)+"<br>");
document.write("round四舍五入(-4.5):"+Math.round(-4.5)+"<br>");
document.write("round四舍五入(-4.2):"+Math.round(-4.2)+"<br>");
document.write("max最大值):"+Math.max(12,2,4,45,1)+"<br>");
document.write("max最大值(NAN)):"+Math.max("a",2,4,45,1)+"<br>");
document.write("min最小值):"+Math.min(12,2,4,45,-1)+"<br>");
document.write("min最小值(NAN)):"+Math.min("a",2,4,45,1)+"<br>");
document.write("random随机数"+Math.random()+"<br>");

</script>

以上是关于DATE日期··MATH对象的主要内容,如果未能解决你的问题,请参考以下文章

文件操作··方法

python方法更新···

研究是一门艺术 (韦恩·C·布斯, 格雷戈里·G·卡洛姆, 约瑟夫·M·威廉姆斯 著)

数据结构学习-数组A[m+n]中依次存放两个线性表(a1,a2···am),(b1,b2···bn),将两个顺序表位置互换

3.26课·········window.document对象

使用JavaScript·求数组的最大值和最小值