一个时钟显示的JavaScript文档

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <style type="text/css">
<style>
</style>
    <title>时钟</title>
    <script language="JavaScript">
        function showClock() {
        }
        function hideClock() {
        }
        var timerID = null
        var timerRunning = false
        function stopClock() {
            if (timerRunning)
                clearTimeout(timerID);
            timerRunning = false
            document.clock.face.value = "";
        }
        function showTime() {
            var now = new Date();
            var year = now.getYear();
            var month = now.getMonth() + 1;
            var date = now.getDate();
            var hours = now.getHours();
            var mins = now.getMinutes();
            var secs = now.getSeconds();
            var timeVal = "";
            timeVal += ((hours <= 12) ? hours : hours - 12);
            timeVal += ((mins < 10) ? ":0" : ":") + mins;
            timeVal += ((secs <= 10) ? ":0" : ":") + secs;
            timeVal += ((hours < 12) ? "AM" : "PM");
            timeVal += ((month < 10) ? " on 0" : " on ") + month + "-";
            timeVal += date + "-" + year;
            document.clock.face.value = timeVal;
            timerID = setTimeout("showTime()", 1000);
            timerRunning = true
        }
        function startClock() {
            stopClock();
            showTime();
        }
        function windowOpener(indexnum) {
            var loadpos = "date.html" + "#" + indexnum;
            controlWindow = window.open(loadpos, "date", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=620,height=400");
        }
    </script>
</head>
<body οnlοad="startClock()">
    <p align="center">
    </p>
    <div align="center">
        <center>
            <table border="0" cellspacing="0" cellpadding="0">
                <tr>
                    <td width="100%">
                        <form name="clock" οnsubmit="0">
                        <div align="center">
                            <center>
                                <p>
                                    <input type="text" name="face" size="20" value style="background-color: rgb(192,192,192)">
                                </p>
                            </center>
                        </div>
                        </form>
                    </td>
                </tr>
            </table>
        </center>
    </div>
</body>
</html>

 

显示的效果是:(此为静态效果)

转载于:https://www.cnblogs.com/dc-learn/archive/2013/01/22/2871242.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值