我试图让我的函数查看输入到文本框中的数字,如果它大于 x 数字(例如,我输入 5),则在 Div 中显示一条消息,如果小于或等于另一条消息。现在我单击按钮,没有任何反应。我是第一次尝试学习 Javascript,所以请原谅我的无知 - 我哪里出错了?谢谢!!
<script>
function function1()
{
for (var theNumber)
{
var theNumber=parseFloat(document.getElementById('theInput').value);
if (theNumber < 5)
{
document.getElementById('theDiv').innerHTML="Smaller.";
}
else (theNumber >= 5)
{
document.getElementById('theDiv').innerHTML="Larger.";
}
}
</script>
<body>
<input type="button" id="theButton" value="click me!" onclick="function1()"></p>
<div id="theDiv"></div>
</body>
</html>