new Date()时间对象

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>.html</title>
<style>
</style>
<script src="jquery-1.7.2.min.js"></script>
<script>
// getDay()返回一星期中的某一天(0-6)
// getDate()返回一个月中的某一天(1-31)
//在使用switch语句的时候,因为return具有停止执行函数的功能,所以不用加break;

function toChinese(day){
switch(day){
case 0: return "日";
case 1: return "一";
case 2: return "二";
case 3: return "三";
case 4: return "四";
case 5: return "五";
case 6: return "六";
}
}
function getTime(){
var oDate=new Date();
var str="";
str=oDate.getFullYear()+"年"+(oDate.getMonth()+1)+"月"+oDate.getDate()+"日 星期"+toChinese(oDate.getDay());
$(".time").html(str);
}
</script>
</head>
<body>
<button class="timeBtn" onclick="getTime()">北京时间</button>
<div class="time"></div>
</body>
</html>

时间: 2024-10-05 05:11:55

new Date()时间对象的相关文章

JavaScript基础 使用new Date() 创建当前日期时间对象

镇场诗: 清心感悟智慧语,不着世间名与利.学水处下纳百川,舍尽贡高我慢意. 学有小成返哺根,愿铸一良心博客.诚心于此写经验,愿见文者得启发.------------------------------------------ 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8&qu

JavaScript基础 Date(num) num为毫秒值 创建一个时间对象

镇场诗: 清心感悟智慧语,不着世间名与利.学水处下纳百川,舍尽贡高我慢意. 学有小成返哺根,愿铸一良心博客.诚心于此写经验,愿见文者得启发.------------------------------------------ code: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=ut

JAVA基础学习之final关键字、遍历集合、日期类对象的使用、Math类对象的使用、Runtime类对象的使用、时间对象Date(两个日期相减)

1.final关键字和.net中的const关键字一样,是常量的修饰符,但是final还可以修饰类.方法.写法规范:常量所有字母都大写,多个单词中间用 "_"连接. 2.遍历集合ArrayList<Integer> list = new ArrayList<Integer>();list.add(1);list.add(3);list.add(5);list.add(7);// 遍历List方法1,使用普通for循环:for (int i = 0; i <

JavaScript日期时间对象的创建与使用(三)

时钟效果一: 代码: <html> <head> <meta charset="utf-8"/> <title>JavaScript日期时间对象的创建与使用</title> </head> <body> <h2 id="time"></h2> <script type="text/javascript"> function Cl

时间对象

在写一些东西的时候,经常需要获取当前系统的时间对象,就要用到new Date(); alert(new Date()); // 当前系统的时间对象 // 当前:当代码读到alert(new Date());,那就是当前的这样一个状态: // 系统的时间对象:指的是当前电脑上的操作系统: // myTime typrof ,可以检测到new Date()是一个 object数据类型 var myTime = new Date(); // 在这里里面包含着关于时间的所有信息 // 如果你想在new

js时间对象格式化 format(转载)

/** * 时间对象的格式化 */ Date.prototype.format = function(format){ /* * format="yyyy-MM-dd hh:mm:ss"; */ var o = { "M+": this.getMonth() + 1, "d+": this.getDate(), "h+": this.getHours(), "m+": this.getMinutes(),

js实现倒计时及时间对象

JS实现倒计时效果代码如下: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>无标题文档</title>h 6 <style> 7 #box { 8 width: 100%; 9 height: 400px; 10 background: black; 11 color: #fff; 12 font-size:4

js-------》(小效果)实现倒计时及时间对象

js实现倒计时及时间对象 JS实现倒计时效果代码如下: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>无标题文档</title>h 6 <style> 7 #box { 8 width: 100%; 9 height: 400px; 10 background: black; 11 color: #fff; 1

时间对象的方法总结

时间对象是一个我们经常要用到的对象,无论是做时间输出.时间判断等操作时都与这个对象离不开.除开JavaScript中的时间对象外,在VbScript中也有许多的时间对象,而且非常好用.下面还是按照我们的流程来进行讲解. 它是一个内置对象--而不是其它对象的属性,允许用户执行各种使用日期和时间的过程.  方法:分为得到时间方法.设置时间方法和转换时间方法 得到时间方法:  getDate() 查看Date对象并返回日期  getDay() 返回星期几  getHours() 返回小时数  getM