<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // 当真语句只有一条代码的时候(但是不推荐) // if (4<5){ // alert(1) // }; // if(4<5)alert(1); // if(4<5) // alert(1); // else // alert(2); </script> </body> </html>