那个是用来贮存分数的代码?
score = ;这行代码有什么用?=号后面填数字就可以运行,填文字就不可以,为什么?
2015-01-09
你不觉得你的if和else if 中的判断是矛盾的吗 应该是 >90 <90并且>75 <70并且>60 最后是else
function rec(){ var score=prompt("你的分数多少?"); //score变量,用来存储用户输入的成绩值。 //score =50 ; alert(score); if(score>=90) { document.write("你很棒!"); } else if(score>=75&&score<90) { document.write("不错吆!"); } else if(score>=60&score<75) { document.write("要加油!"); } else { document.write("要努力了!"); } }
举报