JavaScript 編寫第1個(gè)程序
■知識(shí)點(diǎn)
在HTML頁(yè)面中嵌入JavaScript腳本需要使用<script>標(biāo)簽,用戶可以在<script>標(biāo)簽中直接編寫JavaScript代碼。
■設(shè)計(jì)過程
第1步,新建HTML文檔,保存為test.html。
第2步,在<head>標(biāo)簽內(nèi)插入一個(gè)<script>標(biāo)簽。
第3步,為<script〉標(biāo)簽設(shè)置 type="text/javascript"屬性。
第4步,在<script〉標(biāo)簽內(nèi)輸入JavaScript 代碼:document.write("<hl>Hi,JavaScript!</hl>");。
<script type="text/javascript">
document.write("<hl>Hi,JavaScript!</hl>");
</script>
在JavaScript腳本中,document表不網(wǎng)頁(yè)文檔對(duì)象,document.write()表示調(diào)用document 對(duì)象的 write()方法,在當(dāng)前網(wǎng)頁(yè)源代碼中寫入HTML字符串"<h1>Hi,JavaScript!</h1>”。
第5步,保存網(wǎng)頁(yè)文檔,在瀏覽器中預(yù)覽,顯示效果如圖所示。
點(diǎn)擊加載更多評(píng)論>>