控制流程語句
阿新 • • 發佈:2017-05-28
col lns body ava 常量與變量 str 代碼 格式 string
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript"> /* 控制流程語句 if語句 格式: if(判斷條件){ 符合條件執行的代碼 } if語句的特殊之處: 1. 在javascript中的if語句條件不單止可以寫布爾表達式,還可以寫任何的數據。 number 非0為true, 0為false. string 內容不能空是true, 內容空的時候是false。 undefined:false NaN: false var workAge = 0; var str =""; var b; if(b){ document.write("明天過來面試!!"); }else{ document.write("不要在投我們公司了,不要你!"); } 選擇語句: switch語句 switch(變量){ case 值1: break; case 值2: break; case 值3: break; ..... default: break; } 特殊之處: 1. 在javascript中case後面可以跟常量與變量還可以跟表達式。*/ var option = "A"; var a = "A"; var score =98; switch(option){ case score>=90?"A":"B": document.write("java"); break; case "B": document.write("ps"); case "C": document.write("javascript");break; case "D": document.write("C++"); break; } </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title> </head> <body> </body> </html>
控制流程語句