哎,感觉JS太多内容和C语言差不多都,不想学这个了,看看ajax吧。
<!DOCTYPE html> <html lang="zh-CN"> <head> <title> 页面 </title> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script> /* if(条件表达式){ //执行语句1 } else{ //执行语句2 } */ //案例:进入网吧 var age=prompt('请输入您的年龄'); if(age>=18){ alert('请进!'); } else{ alert('年龄未满十八,禁止进入!'); } //案例:判断闰年 var year=prompt('请输入年份'); if((year % 4 == 0 && year % 100 != 0)||(year % 400 == 0)){ alert(year+'年是闰年'); } else{ alert(year+'年是平年'); } /* //多分支语句 if(条件表达式1){ //语句1 } else if(条件表达式2){ //语句2 } else if(条件表达式3){ //语句3 } else{ //最后的语句 } */ </script> </head> <body> </body> </html>