當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > 編程其他 > JavaScript注釋

JavaScript注釋

2012/11/27 21:22:09作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

可以添加注釋來對(duì)JavaScript進(jìn)行解釋,或者提高其可讀性。
單行的注釋以//開始。

<script type="text/javascript">
// 這行代碼輸出標(biāo)題:
document.write("<h1>This is a header</h1>");
// 這行代碼輸出段落:
document.write("<p>This is a paragraph</p>");
document.write("<p>This is another paragraph</p>");
</script>

多行注釋以/*開頭,以*/結(jié)尾。

<script type="text/javascript">
/*
下面的代碼將輸出
一個(gè)標(biāo)題和兩個(gè)段落
/*
document.write("<h1>This is a header</h1>");
document.write("<p>This is a paragraph</p>");
document.write("<p>This is another paragraph</p>");
</script>

過多的JavaScrjpt注釋會(huì)降低JavaScript的執(zhí)行速度與加載速度,因此應(yīng)在發(fā)布網(wǎng)站時(shí)去捧JavaScript注釋。

注釋塊(/*…*/)中不能有/*或*/(JavaScript正則表達(dá)式中可能產(chǎn)生這種代碼),這樣會(huì)產(chǎn)生語法錯(cuò)誤,因此推薦使用//作為注釋代碼。

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:JavaScript注釋 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: JavaScript  注釋