| 个人资料☺ 미안하다, 사랑한다 ☺照片日志列表 | 帮助 |
|
|
11月9日 Bar ClockBar Clock
<html> <head> <title>Bar Clock</title> <script language="JavaScript"> <!-- hiding function clock() { var t = new Date(); var h = t.getHours(); var m = t.getMinutes(); var s = t.getSeconds(); var units = new String(""); var hours = t.getHours(); var min = t.getMinutes(); var sec = t.getSeconds(); document.clock.hours.value = units.substring(0, hours); document.clock.minutes.value = units.substring(0, min); document.clock.seconds.value = units.substring(0, sec); var status = "AM"; if (hours > 11) status = "PM"; if (hours < 11) hours -= 12; if (min < 10) min = "0" + min; if (sec < 10) sec = "0" + sec; document.clock.h.value = hours; document.clock.m.value = min; document.clock.s.value = sec; document.clock.time.value = hours + ":" + min + ":" + sec + " " + status; window.setTimeout("clock()", 900); } // End --> </script> </head> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <body onLoad="clock();"> <!-- STEP THREE: Copy this code into the BODY of your HTML document --> <form name="clock"> <table> <tr> <td> Hours: </td> <td> <input type="text" name="h" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="hours" size="24" style="color: navy"> </td> </tr> <tr> <td> Minutes: </td> <td> <input type="text" name="m" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="minutes" size="60" style="color: navy"> </td> </tr> <tr> <td> Seconds: </td> <td> <input type="text" name="s" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="seconds" size="69" style="color: navy"> </td> </tr> <tr> <td> Time: <input type=text name="time" size="20" style="border: 0"> </td> </tr> </table> </form> </body> </html> face a serious problemWhen we face a serious problem, how do we usually act to reponse it? The true thing is that you and I don't know how to handle first. The anxiety then comes in our mind quickly.This affects us in failing to control the serious problem with ease. The rules for controlling such a disaster are : 1>> First, keep yourself calm. 2>> Second, find every possible way to escape or succeed. 3>> Third, take simply the best way. 4>> Finally, decide and take action fast. |
||||||||||||||
|
|