<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>prompt</title> <script type="text/javascript"> function rec(){ var score; //score变量,用来存储用户输入的成绩值。 score = prompt("输入姓名:"); if(score=="xxx") { document.write("你最帅!"); } else if(score=="www") { //alert("come on!"); var love; love = confirm("nice day!"); if(love==true) document.write("perfectday"); } else { document.write("要努力了!"); } } </script> </head> <body> <input name="button" type="button" onClick="rec()" value="点这里?" /> </body> </html>
执行不了,应该是不能把