您好,登錄后才能下訂單哦!
效果圖:
代碼如下:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>一個(gè)簡(jiǎn)單的數(shù)字時(shí)鐘</title> <script type="text/javascript" charset="utf-8"> // 定義一個(gè)函數(shù)用以顯示當(dāng)前時(shí)間 function displayTime() { var elt = document.getElementById("clock"); // 通過(guò)id= "clock"找到元素 var now = new Date(); // 得到當(dāng)前時(shí)間 elt.innerHTML = now.toLocaleTimeString(); //讓elt來(lái)顯示它 setTimeout(displayTime,1000); //在1秒后再次執(zhí)行 } window.onload = displayTime; //當(dāng)onload事件發(fā)生時(shí)開(kāi)始顯示時(shí)間 </script> <style type="text/css" media="all"> #clock { font: bold 24pt sans; background: #ddf; padding: 10px; border: 2px solid black; border-radius: 10px; } </style> </head> <body> <h2>一個(gè)簡(jiǎn)單的數(shù)字時(shí)鐘</h2> <span id="clock"></span> </body> </html>
以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持億速云!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。