⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 day3_6.html

📁 JAVASCRIPT 高级编程
💻 HTML
📖 第 1 页 / 共 2 页
字号:
    <td colspan="2" align="center" bgcolor="#666699"><a href="../../1-download/index.htm"><font color="#FFFFFF">网猴下载</font></a></td>
  </tr>
  <tr bgcolor="#FFFFFF"> 
    <td colspan="2">-<a href="../../1-download/page1.htm">网页制作</a></td>
  </tr>
  <tr bgcolor="#FFFFFF"> 
    <td colspan="2">-<font color="#000000"><a href="../../1-download/page2.htm">程序设计</a></font></td>
  </tr>
  <tr bgcolor="#FFFFFF"> 
    <td colspan="2">-<font color="#000000"><a href="../../1-download/page3.htm">网站设计</a></font></td>
  </tr>
  <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="宋体">给定时器加入变量</font></strong> 
      <p><font size="3"><font face="宋体">定时器的功能主要在于设定某个未来的时间,让Javascript到<br>
        时执行某个语句:<br>
        <br>
        var the_string = &quot;hello&quot;;<br>
        the_timeout = setTimeout(&quot;alert(the_string);&quot;, 60000);<br>
        <br>
        这两行指令让JavaScript等待一分钟然后弹出一个提示框显<br>
        示<tt>the_string</tt>变量所包含的内容。所以一分钟后JavaScript就<br>
        寻找叫做<tt>the_string</tt>的变量并调用<tt>alert()</tt>。但是问题是一分钟<br>
        后该变量中所包含的内容可能后是别的什么。所以如果你把这<br>
        两行代码放在一个函数内,<tt>setTimeout</tt>有可能会报错。例如在<br>
        下例中:<br>
        function alertInAMinute()<br>
        {<br>
        var the_string = &quot;hello&quot;;<br>
        the_timeout = setTimeout(&quot;alert(the_string);&quot;, 60000);<br>
        }<br>
        </font></font></p>
      <font size="3"> 
      <p><font face="宋体">然后你在某个链接中调用这个函数:</font></p>
      </font> 
      <blockquote> 
                <pre>
      <font size="3"></font><font size="3" face="宋体">
&lt;a href=&quot;#&quot; onClick=&quot;alertInAMinute(); return false;&quot;&gt;<br>blah!&lt;/a&gt;
</font></pre>
      </blockquote>
      <font size="3"> 
      <p><font face="宋体">可能会出错。因为你定义名为<tt>the_string</tt>的变量时用的是<tt>var</tt>,<br>
        而当你在一个函数内使用<tt>var</tt>时,Javascript将其理解为该变量<br>
        只存在于该函数中。一旦离开该函数而进入另一个函数后,该<br>
        变量就会从Javascript的记忆中消失。所以当后来需要调用该变<br>
        量时,Javascript从它的记忆中是不可能找到该变量的,错误因<br>
        此就产生了。 </font></p>
      <p><font face="宋体">产生问题的原因在于你将一个变量传递给<tt>setTimeout</tt>。你可以通<br>
        过将变量的值而不是变量本身传递给setTime来避免这个问题: </font></p>
      <blockquote> 
                <pre><font face="宋体">function alertInAMinute()
{
	var the_string = &quot;hello&quot;;
	the_timeout = setTimeout(&quot;alert(&quot; + the_string + &quot;);&quot;<br>,60000);
}
</font></pre>
      </blockquote>
      <p><font face="宋体">这段代码将变量<tt>the_string</tt>从<tt>setTimeout</tt>的引号中拉出来,由于<br>
        该变量变量目前不在setTimeout的引号内,JavaScript就可以从<br>
        记忆中找到该变量的值。 </font></p>
      <p><font face="宋体">定时器在动态HTML中用途非常广泛,所以值得你仔细研究它。</font></p>
      <p><font face="宋体">要使所有的拥护都能看到动态HTML的内容,你必须了解如何识别<br>
        用户所使用的浏览器。<a href="day3_7.html">&gt;&gt;</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_6.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> <a href="day3_5.html">一个Javascript编写的时钟</a><br>
        <font color="#FF0000">第六页</font> 给定时器加入变量<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.&nbsp; All rights reserved. 
 </span> 
</center>
</body>
<!-- #EndTemplate --></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -