您好,登錄后才能下訂單哦!
<!DOCTYPE html>
<html>
<head>
<title>hl.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<!-- 把如下代碼加入<head>區域中 -->
<script LANGUAGE="javascript" TYPE="text/javascript">
//這里面設置相關樣式,注意不要錯刪標點哦
function style() {
document
.write('<table border="1" cellspacing="0" cellpadding="1" align="CENTER" bgcolor="pink"><TR><TD><table border="1" cellspacing="1" cellpadding="1" bgcolor="pink">');
document.writeln("</TR><TR>");
document
.writeln('<TR><td colspan="7" align="CENTER" valign="TOP" bgcolor="red"><form name="clock"><FONT style=font-size:9pt;Color:#ffffff>當前時間 <INPUT TYPE="Text" NAME="face" size="12" ALIGN="TOP"></FONT></TD></TR></TABLE></TD></TR></TABLE></form>');
}
</script>
<script LANGUAGE="javascript">
//這里主要是控制時間
var timerID = null;
var timerRunning = false;
function stopclock() {
if (timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function showtime() {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var timevalue = " " + ((hours > 12) ? hours - 12 : hours);
timevalue += ((minutes < 10) ? ":0" : ":") + minutes;
timevalue += ((seconds < 10) ? ":0" : ":") + seconds;
timevalue += (hours >= 12) ? " PM" : " AM";
document.clock.face.value = timevalue;
timerID = setTimeout("showtime()", 1000);
timerRunning = true;
}
function startclock() {
stopclock();
showtime();
}
</script>
<!-- 在窗體加載的時候調用startclock()函數 -->
<body onLoad="startclock()">
<!-- 調用style顯示樣式 -->
<script LANGUAGE="javascript" TYPE="text/javascript">
style();
</script>
</body>
</html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。