- Java里面的语句:
** if判断
*** =:表示赋值
*** ==:表示判断
** switch语句
** 循环 for while do-while
- js里面的也是这些语句
** if判断
** switch语句
- Java里面数据类型string吗? 在jdk1.7开始支持
- js里面都支持
** 循环 for while do-while
for(var num=1; num<=3; num++) {}
i++ 和 ++i 与Java里面的一样
<html> <head> <title>World</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> //if语句 /* var i = 10; if(i == 10) { alert("10"); } else { alert("不是10"); } */ //switch语句 /* var str = "5"; switch(str) { case "4": alert("4"); break; case "5": alert("5"); break; default: alert("other"); } */ //while循环 /* var i = 5; while(i>1) { alert(i); i--; } */ //for循环 for(var num=0; num<3; num++) { alert(num); } </script> </body> </html>