首页 > 代码库 > 控制流程语句
控制流程语句
<!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>
控制流程语句
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。