p104inlinescript.htm

来自「javascript source code part2」· HTM 代码 · 共 29 行

HTM
29
字号
<HTML>
 <HEAD>
  <SCRIPT>
   function weather_comment()
   {
     if ( !Math.random )     // doesn't exist in Navigator 2.0
     {
      document.write('<PRE> -- weather called off due to rain --</PRE>');
     }
     else if ( Math.floor((Math.random()*2)) == 0 ) 
     {
      document.write("<STRONG>It's just awful.</STRONG>\n");
     }
     else
     {
      document.write("<EM>How wonderful it is!</EM>\n");
     }
   }
  </SCRIPT>
 </HEAD>
 <BODY>
  <P>Weather report for today:</P>
  <SCRIPT>
   weather_comment();       // add special stuff
  </SCRIPT>
  <P>End of report.</P>
 </BODY>
</HTML>

⌨️ 快捷键说明

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