zoukankan      html  css  js  c++  java
  • 使用jQuery方法获取当前日期和时间

    <!DOCTYPE html>
    <html class="no-js">
    <head>
    <meta charset="UTF-8">
    <title>当期时间</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <style type="text/css">
    .date{height:100px;line-height:100px;margin:0 auto;font-family:Arial, Helvetica, sans-serif;font-size:40px;
    border:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,0.3) inset;border-radius:5px;text-shadow:1px 1px 2px rgba(0,0,0,0.3);}
    .date strong{padding:0 10px;display:inline-block;height:100px;border-right:solid 1px #ccc;}
    </style>
    </head>
    <body>
    <h1>js简单的获取当前日期和时间</h1>
    <p class="date">
    <strong id="Y"></strong>
    <strong id="MH"></strong>
    <strong id="TD"></strong>
    <strong id="D"></strong>
    <strong id="H"></strong>
    <strong id="M"></strong>
    <strong id="S"></strong>
    </p>
    <script type="text/javascript">
    $(document).ready(function(){

    setInterval(showTime, 1000);
    function timer(obj,txt){
    obj.text(txt);
    }
    function showTime(){
    var today = new Date();
    var weekday=new Array(7)
    weekday[0]="星期一"
    weekday[1]="星期二"
    weekday[2]="星期三"
    weekday[3]="星期四"
    weekday[4]="星期五"
    weekday[5]="星期六"
    weekday[6]="星期日"
    var y=today.getFullYear()+"年";
    var month=today.getMonth()+"月";
    var td=today.getDate()+"日";
    var d=weekday[today.getDay()];
    var h=today.getHours();
    var m=today.getMinutes();
    var s=today.getSeconds();
    timer($("#Y"),y);
    timer($("#MH"),month);
    timer($("#TD"),td);
    timer($("#D"),d);
    timer($("#H"),h);
    timer($("#M"),m);
    timer($("#S"),s);
    }
    })
    </script>
    </body>
    </html>

  • 相关阅读:
    leetcode 279. Perfect Squares
    leetcode 546. Remove Boxes
    leetcode 312. Burst Balloons
    leetcode 160. Intersection of Two Linked Lists
    leetcode 55. Jump Game
    剑指offer 滑动窗口的最大值
    剑指offer 剪绳子
    剑指offer 字符流中第一个不重复的字符
    leetcode 673. Number of Longest Increasing Subsequence
    leetcode 75. Sort Colors (荷兰三色旗问题)
  • 原文地址:https://www.cnblogs.com/kevin1988/p/3759309.html
Copyright © 2011-2022 走看看