我想要做的非常简单:
- 如果输入是
0
,则意味着他们没有输入数字,它应该告诉你。 - 当输入是 时
7
,它应该说你做对了。 - 其他任何事情,它都应该告诉你你做错了。
但无论输入是什么,它都只输出“7 是正确的”行,我无法弄清楚什么是错的。
<script type="text/javascript">
function problem2 ()
{
var number = 0;
var text=document.getElementById("output");
number = prompt("Enter a number between 1 and 10 please" , 0);
if (number = 0)
{
text.value = "You didn't enter a number!";
}
if (number = 7)
{
text.value = "7 is correct!";
}
else
{
text.value = "Sorry, ", input, "is not correct!";
}
}
</script>
<input type="button" value="Click here" onclick="problem2()">
<input id="output" type="text">