1 建立腳本塊 1: <script language=」JavaScript」> 2: JavaScript code goes here 3: </script> 2 隱藏腳本代碼 1: <script language=」JavaScript」> 2: <!-- 3: document.write(「Hello」); 4: // --> 5: </script> 在不支持JavaScript的瀏覽器中將不執行相關代碼 3 瀏覽器不支持的時候顯示 1: <noscript> 2: Hello to the non-JavaScript browser. 3: </noscript> 4 連接外部腳本文件 1: <script language=」JavaScript」 src="/」filename.js"」></script> 5 註釋腳本 1: // This is a comment 2: document.write(「Hello」); // This is a comment 3: /* 4: All of this 5: is a comment 6: */ 6 輸出到瀏覽器 1: document.write(「<strong>Hello</strong>」); 7 定義變量 1: var myVariable = 「some value」; 8 字符串相加 1: var myString = 「String1」 + 「String2」; 9 字符串搜索 1: <script language=」JavaScript」> 2: <!-- 3: var myVariable = 「Hello there」; 4: var therePlace = myVariable.search(「there」); 5: document.write(therePlace); 6: // --> 7: </script> 10 字符串替換 1: thisVar.replace(「Monday」,」Friday」);