編碼 現在我們要做一個稍微複雜的東西,如下HTML,有一堆Select用於選擇日期和時間,在選擇後,實時在 id 為 result-wrapper 的 p 標簽中顯示所選時間和當前時間的差值。 使用上方的HTML結構(可以根據需要自行微調)為基礎編寫JavaScript代碼 當變更任何一個selec ...
編碼
現在我們要做一個稍微複雜的東西,如下HTML,有一堆Select用於選擇日期和時間,在選擇後,實時在 id 為 result-wrapper 的 p 標簽中顯示所選時間和當前時間的差值。
<select id="year-select">
<option value="2000">2000</option>
<option value="2001">2001</option>
<option value="2002">2002</option>
……
<option value="2032">2002</option>
</select>
<select id="month-select">
<option value="1">1</option>
<option value="2">2</option>
……
<option value="12">12</option>
</select>
<select id="day-select">
<option value="1">1</option>
<option value="2">2</option>
……
<option value="31">31</option>
</select>
<select id="hour-select">
<option value="0">00</option>
<option value="1">01</option>
……
<option value="23">23</option>
</select>
<select id="minite-select">
<option value="0">0</option>
<option value="1">1</option>
……
<option>59</option>
</select>
<select id="second-select">
<option value="0">0</option>
<option value="1">1</option>
……
<option>59</option>
</select>
<p id="result-wrapper">現在距離 2001年1月1日星期X HH:MM:SS 還有 X 天 X 小時 X 分 X 秒</p>
- 使用上方的HTML結構(可以根據需要自行微調)為基礎編寫JavaScript代碼
- 當變更任何一個select選擇時,更新 result-wrapper 的內容
- 當所選時間早於現在時間時,文案為 現在距離 "所選時間" 已經過去 xxxx
- 當所選時間晚於現在時間時,文案為 現在距離 "所選時間" 還有 xxxx
- 註意當前時間經過所選時間時候的文案變化
- 註意選擇不同月份的時候,日期的可選範圍不一樣,比如1月可以選31天,11月只有30天,註意閏年
- 同樣,需要註意,通過優雅的函數封裝,使得代碼更加可讀且可維護
1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="utf-8" /> 6 <title>函數和時鐘練習2</title> 7 8 </head> 9 10 <body> 11 <select id="year-select"> 12 <option value="">請選擇年份</option> 13 14 </select> 15 16 <select id="month-select"> 17 <option value=" ">請選擇月份</option> 18 19 </select> 20 21 <select id="day-select"> 22 <option value=" ">請選擇日期</option> 23 24 </select> 25 26 <select id="hour-select"> 27 <option value=" ">請選擇小時</option> 28 29 </select> 30 31 <select id="minute-select"> 32 <option value=" ">請選擇分鐘</option> 33 34 </select> 35 36 <select id="second-select"> 37 <option value=" ">請選擇秒數</option> 38 39 </select> 40 41 <p id="result-wrapper">現在距離 2001年1月1日星期X HH:MM:SS 還有 X 天 X 小時 X 分 X 秒</p> 42 <script> 43 var year = document.getElementById("year-select"); 44 var month = document.getElementById("month-select"); 45 var day = document.getElementById("day-select"); 46 var hour = document.getElementById("hour-select"); 47 var minute = document.getElementById("minute-select"); 48 var second = document.getElementById("second-select"); 49 var result = document.getElementById("result-wrapper"); 50 51 function startTime() { 52 var x = new Date(); 53 var y = x.getFullYear(); 54 for (i = (y - 30); i < (y + 30); i++) { 55 year.options.add(new Option(i + "年", i)); 56 } 57 for (i = 1; i < 13; i++) { 58 month.options.add(new Option(i + "月", i)); 59 } 60 for (i = 0; i < 24; i++) { 61 hour.options.add(new Option(i + "時", i)); 62 } 63 for (i = 0; i < 60; i++) { 64 minute.options.add(new Option(i + "分", i)); 65 } 66 for (i = 0; i < 60; i++) { 67 second.options.add(new Option(i + "秒", i)); 68 } 69 //這樣是局部變數私有的數組 var Days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; 70 Days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; //這才是全局變數 71 } 72 73 function addZero(a) { 74 if (a < 10) { 75 a = "0" + a; 76 } 77 return a; 78 } 79 80 function getWeekday(weekday) { 81 var arr = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; 82 return arr[weekday]; 83 } 84 85 function optionsClear(e) { 86 e.options.length = 1; 87 } 88 89 function writeDay(n) { 90 optionsClear(day); //清除原來已有的數組 91 for (i = 1; i < n + 1; i++) { 92 day.options.add(new Option(i + "日", i)); 93 } 94 } 95 96 function isLeapYear(year) { 97 return ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0); 98 } 99 100 year.onchange = function () { 101 var MMvalue = month.options[month.selectedIndex].value; 102 var n = Days[MMvalue - 1]; 103 if (MMvalue == 2 && isLeapYear(year.value)) //判斷是否為閏年,是的話2月份+1天。 104 n++; 105 writeDay(n); 106 } 107 month.onchange = function () { 108 var YYvalue = year.options[year.selectedIndex].value; 109 var n = Days[month.value - 1]; 110 if (month.value == 2 && isLeapYear(YYvalue)) 111 n++; 112 writeDay(n); 113 } 114 if (document.attachEvent) { 115 window.attachEvent("onload", startTime); 116 } else { 117 window.addEventListener("load", startTime); 118 } 119 120 function getTimeSelect() { 121 var str = year.value + "/" + month.value + "/" + day.value; 122 var timeselect = new Date(str); 123 return year.value + "年" + month.value + "月" + day.value + "日" + getWeekday(timeselect.getDay()) + hour.value + 124 ":" + minute.value + ":" + second.value; 125 } 126 127 function getTimeDistance() { 128 var now = new Date(); 129 var timeSelectStr = year.value + "/" + month.value + "/" + day.value + " " + hour.value + ":" + minute.value + 130 ":" + second.value; 131 var selectTime = new Date(timeSelectStr); 132 var secondDistance = now.getTime() - selectTime.getTime(); 133 if (secondDistance < 0) { 134 secondDistance = -secondDistance; //轉換為正整數方便計算 135 var str = "還有"; 136 } else { 137 var str = "已經過去" 138 } 139 var daym = secondDistance / 86400000; 140 var hourm = (secondDistance % 86400000) / 3600000; 141 var minutem = ((secondDistance % 86400000) % 3600000) / 60000; 142 var secondm = (((secondDistance % 86400000) % 3600000) % 60000) / 1000; 143 return str + parseInt(daym) + "天" + parseInt(hourm) + "小時" + parseInt(minutem) + "分" + parseInt(secondm) + 144 "秒"; 145 } 146 147 function showDate() { 148 result.innerHTML = "現在距離" + getTimeSelect() + getTimeDistance(); 149 } 150 setInterval(showDate, 1000); 151 152 </script> 153 </body> 154 155 </html>