JavaScript 語句向瀏覽器發出的命令,作用是告訴瀏覽器應該做什麼。
簡介
document.write("Helloworld");
代碼
<scripttype="text/javascript">document.write("<h1>Thisisaheader</h1>");document.write("<p>Thisisaparagraph</p>");document.write("<p>Thisisanotherparagraph</p>");</script>
代碼塊
<scripttype="text/javascript">{document.write("<h1>Thisisaheader</h1>");document.write("<p>Thisisaparagraph</p>");document.write("<p>Thisisanotherparagraph</p>");}</script>
語句標識符
語句 | 描述 |
---|---|
用於跳出循環。 | |
catch | 語句塊,在 try 語句塊執行出錯時執行 catch 語句塊。 |
跳過循環中的一個疊代。 | |
do ... while | 執行一個語句塊,在條件語句為 true 時繼續執行該語句塊。 |
for | 在條件語句為 true 時,可以將代碼塊執行指定的次數。 |
for ... in | 用於遍歷數組或者對象的屬性(對數組或者對象的屬性進行循環操作)。 |
function | 定義一個函式 |
if ... else | 用於基於不同的條件來執行不同的動作。 |
return | 退出函式 |
switch | 用於基於不同的條件來執行不同的動作。 |
拋出(生成)錯誤 。 | |
try | 實現錯誤處理,與 catch 一同使用。 |
聲明一個變數。 | |
while | 當條件語句為 true 時,執行語句塊。 |