AS P.NET网站开发技术项目式课件作者李正吉第三章节页面的客户端交互.pptVIP

  • 3
  • 0
  • 约9.5千字
  • 约 40页
  • 2018-05-08 发布于广东
  • 举报

AS P.NET网站开发技术项目式课件作者李正吉第三章节页面的客户端交互.ppt

3.3.5 常用内置对象 3.日期对象Date 例 3?16 制作数字时钟 在网页中加入一个div,id为“nowDiv”; 在head中加入script标记,输入如下脚本程序: setInterval(show(), 1000); //设置每1000毫秒调用一次show函数 function show() { var date = new Date(); //空参数初始化Date对象,获得当前日期时间 var now = ; now = date.getFullYear() + -; //取年份 now = now + (date.getMonth() + 1) + -; //取月,0~11对应12个月 now = now + date.getDate() + ; now = now + date.getHours() + :; now = now + date.getMinutes() + :; now = now + date.getSeconds() + ; document.getElementById(nowDiv).innerHTML = now; //在div内显示now字符串 } 3.3.5 常用内置对象 4.数学对象Math (1)min(

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档