📄 day3_5.html
字号:
<tr bgcolor="#FFFFFF">
<td colspan="2">-<font color="#000000"><a href="../../1-download/page4.htm">电子商务</a></font>
</td>
</tr>
<tr>
<td colspan="2" align="center" bgcolor="#666699"><a href="../../1-teach/index.htm"><font color="#FFFFFF">实用技巧</font></a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/internet/index.htm">Internet应用</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/photoshop/index.html">Photoshop</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/flash/page1.html">Flash</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/asp/index.html">ASP</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/php/index.html">PHP</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/java/index.htm">Java</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/vb/index.htm">VB</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/c/index.htm">C、C++</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-backend/database/php_mysql/index.html">PHP/MySQL</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2"><a href="../../1-backend/cgi_perl/perl_beginner/index.html">-Perl</a>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2">-<a href="../../1-teach/other/index.htm">其它</a> </td>
</tr>
<tr>
<td colspan="2" bgcolor="#666699">
<div align="center"><font color="#FFFFFF">更多教程</font></div>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" height="17"><a href="../../1hdml/index.html">-HDML</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" height="23"><font face="宋体"><a href="../../1-backend/database/course/day1_1.html">-网络数据库</a></font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" height="14"><a href="../../1-backend/protocols/ping/index.html"><font face="arial, helvetica, sans-serif">-ping</font></a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" height="20"><a href="../../1-backend/cgi_perl/search_engine/index.html">-创建搜索引擎</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" height="16">-<a href="../../1adobe/GoLive/index.html">Adobe GoLive</a></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2"><a href="../../1-backend/cgi_perl/templates/index.html">-模板</a></td>
</tr>
<tr bgcolor="#666699">
<td colspan="2" align="center"><font color="#FFFFFF">合作伙伴</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td colspan="2" align="left">-<a href="http://www.5dmedia.com/" target="_blank">5D精英网</a></td>
</tr>
<tr align="center" bgcolor="#FFFFFF">
<td colspan="2"> <img src="../../Library/front_monkey.gif" width="59" height="68"></td>
</tr>
</tbody>
</table>
<!-- #EndLibraryItem --> </td>
<!-- End of headlines (column 1: left column) --> <!-- Gutter between columns 1 and 2 -->
<td width="10" height="794"><img src="http://www.sohu.com/images/pixel.gif" width=10></td>
<!-- Search box and directories (columns 2 and 3: middle columns, combined into one) -->
<td align=center valign=top width="558">
<div align="left"><!-- #BeginEditable "1" -->
<title>JavaScrip高级教程</title>
<strong>第五页:<font size="3" face="宋体">一个Javascript编写的时钟</font></strong>
<p><font size="3"><font face="宋体">现在时间是:</font></font></p>
<font size="3">
<form name="the_form">
<p><font face="宋体">
<input type="text" name="the_text" size="20">
<input type="button" value="启动时钟" onClick="writeTime();" name="button">
<input type="button" value="终止时钟" onClick="clearTimeout(the_timeout);" name="button">
</font></p>
</form>
<p><font face="宋体">点击“启动时钟”则时钟开始运行。它从你的计算机中读取时间<br>
并每半秒更新一次文字框中的显示。这个例子通过一个自调用<br>
的函数设置了一个定时器。同时这个例子可以让你了解一点Date<br>
对象的功能。当讲解cookies时,我提到过Date对象。 </font></p>
</font>
<p><font size="3"></font><font size="3" face="宋体">以下是代码:<br>
function writeTime() {<br>
<br>
// 获得日期对象<br>
var today = new Date();<br>
<br>
// 从对象中获得信息<br>
var hours = today.getHours();<br>
var minutes = today.getMinutes();<br>
var seconds = today.getSeconds();<br>
<br>
// fixTime 使分和秒可以正常显示<br>
// 对于小于10的数字则在该数字前加一个0<br>
minutes = fixTime(minutes);<br>
seconds = fixTime(seconds);<br>
<br>
//将时间字符串组合在一起并写出<br>
var the_time = hours + ":" + minutes + ":"
+ seconds;<br>
window.document.the_form.the_text.value = the_time;<br>
<br>
//每半秒钟执行一次该函数<br>
the_timeout= setTimeout('writeTime();',500);<br>
<br>
}<br>
<br>
<br>
function fixTime(the_time) {<br>
<br>
<br>
</font><font size="3"><font face="宋体">if (the_time <10) { the_time
= "0" + the_time; } return the_time; } </font></font></p>
<font size="3">
<p><font face="宋体">我们仔细研究一下代码。 </font>
<dl>
<dt><font face="宋体"><tt>var today = new Date();</tt> </font></dt>
<dd><font face="宋体">正如<tt>new Array()</tt> 可以生成一个新的数组,你可以可以<br>
用<tt>new Date()</tt> 生成一个新的日期对象。生成对象之后,<br>
你可以对其提出你的问题。你生成的新的日期对象的括号<br>
中间没有任何参数, 但JavaScript会查询计算机的始终<br>
并用其生成新的日期对象。现在我们的日期对象名为<br>
"today" ,我们可以从中提取相应的信息。 </font></dd>
<dt><font face="宋体"><tt>var hours = today.getHours();</tt> </font></dt>
<dd><font face="宋体">这条用于获得当前的小时值。它是军队格式的时间,即,<br>
如果当前时间是下午两点,则它返回的值是14。<tt>getHours()</tt><br>
是Javascript的日期对象内置的方法调用。 </font></dd>
<dt><font face="宋体"><tt>var minutes = today.getMinutes(); var seconds
= today.getSeconds();</tt> </font></dt>
<dd><font face="宋体">这几行原理和<tt>getHours()类似</tt>。 </font></dd>
<dt><font face="宋体"><tt>minutes = fixTime(minutes);</tt> </font></dt>
<dd><font face="宋体"><tt>getMinutes</tt>存在一些问题,如果分钟是11:01, <tt>getMinutes</tt><br>
将返回 "1"。时钟的显示格式可不是这样,它应该显示为<br>
“01”。<tt>fixTime</tt>函数就是用于执行纠正显示格式的功能。 </font></dd>
<dt><font face="宋体">下面两行将字符串组合在一起并显示出来,</font></dt>
<dt><font face="宋体"><tt>the_timeout = setTimeout('writeTime();', 500);</tt>
</font></dt>
<dd><font face="宋体">设置没半秒执行一次该函数的循环。</font></dd>
</dl>
<p><font face="宋体">下面我们将学习如何在定时器中加入变量。<a href="day3_6.html">>></a></font></p>
</font>
<p><font face="宋体" size="3" color="#000000"><strong>JavaScript高级教程</strong></font><font color="#FF0000" face="宋体" size="3"><br>
</font><font face="宋体"><font color="#FF0000">第一页</font> <a href="day3_5.html">Javascript高级教程
- 第三课</a><br>
<font size="3"><font color="#FF0000">第二页</font> <a href="day3_2.html">如何给事件定时</a><br>
<font color="#FF0000">第三页</font> <a href="day3_3.html">定时循环的概念</a><br>
<font color="#FF0000">第四页</font> <a href="day3_4.html">定时循环的做法</a><br>
<font color="#FF0000">第五页</font> 一个Javascript编写的时钟<br>
<font color="#FF0000">第六页</font> <a href="day3_6.html">给定时器加入变量</a><br>
<font color="#FF0000">第七页</font> <a href="day3_7.html">识别用户的浏览器</a><br>
<font color="#FF0000">第八页</font> <a href="day3_8.html">如何识别用户的浏览器</a><br>
<font color="#FF0000">第九页</font> <a href="day3_9.html">对象和方法的识别</a><br>
<font color="#FF0000">第十页</font> <a href="day3_10.html">History对象</a></font></font></p>
<p>[<a href="day1_1.html">第1课</a>][<a href="day2_1.html">第2课</a>][第3课]<font size="3">[<a href="day4_1.html">第4课</a>][<a href="day5_1.html">第5课</a>]</font></p>
<!-- #EndEditable --></div>
</td>
<!-- End of search box and directories (columns 2 and 3: middle columns, combined into one) -->
<!-- Gutter between columns 3 and 4 --> <!-- Other stuff (column 4: right column) -->
<!-- End of other stuff (column 4: right column) --> </tr>
</table>
<!-- End of table surrounding page contents -->
<hr noshade size=1 width=700>
<span class=eng><br>
Copyright (C) 1998-2000 Internet Technologies China. All rights reserved.
</span>
</center>
</body>
<!-- #EndTemplate --></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -