prompt
<script type="text/javascript">
function rec( ){
var score;
score=prompt("请输入成绩: ");
if(score>=90)
{
document.write("你很棒!");
}
else if(score>=60)
{
document.write("不错呦!");
}
else
{
document.write("要加油!");
}
}
</script>
<body>
<input name="button" type="button" onClick="rec()" value="点我"/>
</body>
我只写了 script和body,其他的省略了 这哪里错了? 能出现按钮"点我",但没反应,去掉function rec(){ }能出现对话框,但"点我"这个按钮就不起作用了,对话框是实时视图刷出来的,不是点按钮出来的 求大神指点!