JavaScript if 语句 JavaScript if...else if... 语句 JavaScript数字最大值 JavaScript if 语句 <html> <body> <script> var age = 25; if( age > 18 ){ document.write("Eligible to vote!"); } </script> <p>Set the variable to different value and then try...</p> </body> </html> JavaScript if...else if... 语句 JavaScript数字最大值