9. JavaScript的注釋(Comments in JavaScript)
Q:我如何在JavaScript代碼中插入注釋?
A:JavaScript支持三種不同類型的注釋:
多行C樣式的注釋。 包括在/* 和 */ 內(nèi)的內(nèi)容都是注釋,例如:
/* This is a comment */
/* C-style comments can span
as many lines as you like,
as shown in this example */
C++樣式的單行注釋。這些注釋以//開始,到行尾結(jié)束:
// This is a one-line comment
使用HTML注釋開始序列()??紤]這個(gè)實(shí)例:
This is also a one-line JS comment
because JS ignores the closing characters
of HTML-style comments
HTML樣式的注釋在JavaScript代碼中并不常見。(//引導(dǎo)的單行注釋更簡單也更易讀)。不過,強(qiáng)烈建議使用HTML注釋將JavaScript代碼從舊版本瀏覽器中隱藏。
10. 從舊版瀏覽器中隱藏JS代碼 (Hidding JS code from old browsers)
Q:我如何從不支持JavaScript的舊版中隱藏JS代碼?
A:為了阻止舊版瀏覽器顯示JS代碼,可以使用以下方法:
在開頭的
從實(shí)際上講,你會(huì)發(fā)現(xiàn)創(chuàng)建.js文件保存JavaScript函數(shù)是非常方便的,你可以在不同的HTML文件中重用這些函數(shù)。然而,請(qǐng)注意,一些舊版本瀏覽器(像 Navigator 2.x 和Explorer 3.x)不會(huì)加載外部的JavaScript文件。
13. JavaScript中的保留字(Reserved words in JavaScript)
Q:JavaScript中有哪些保留字呢?
A:JavaScript語言的保留字都列在了下面。(其中一些在JavaScript語言中使用,而在JavaScript保留是為了兼容或者以后可能的擴(kuò)展。)當(dāng)選擇JavaScript變量名時(shí),要避免這些保留字!
abstract else instanceof switch
boolean enum int synchronized
break export interface this
byte extends long throw
case false native throws
catch final new transient
char finally null true
class float package try
const for private typeof
continue function protected var
debugger goto public void
default if return volatile
delete implements short while
do import static with
double in super
除了以上的保留字,最好也避免以下標(biāo)識(shí)符作為JavaScript變量名。這些是Netscape Navigator或者Internet Explorer中客戶端對(duì)象、方法或者屬性的名字。
alert hidden outerWidth
all history packages
anchor image pageXOffset
anchors images pageYOffset
area isNaN parent
array java parseFloat
assign JavaArray parseInt
blur JavaClass password
button JavaObject pkcs11
checkbox JavaPackage plugin
clearTimeout innerHeight prompt
clientInformation innerWidth prototype
close layer radio
closed layers reset
confirm length screenX
crypto link screenY
date location scroll
defaultStatus Math secure
document mimeTypes select
element name self
elements navigate setTimeout
embed navigator status
embeds netscape String
escape Number submit
eval Object sun
event offscreenBuffering taint
fileUpload onblur text
focus onerror textarea
form onfocus top
forms onload toString
frame onunload unescape
frames open untaint
frameRate opener valueOf
function option window
getClass outerHeight
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com