?? p104inlinescript.htm
字號:
<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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -