初学者问题,我目前正在学习 JS,我正在尝试编写一个函数,该函数将从简单的 html 表单中获取文本输入。我不知道如何将文本输入传递给函数。这是我目前正在尝试的:
<html>
<body>
<script type = "text/javascript">
<!--
var myColor = document.getElementById("textbox").value;
function findColor(){
switch(myColor){
case "Blue":
document.write("just like the sky!");
break
case "Red":
document.write("Just like wine!");
break
default:
document.write("Suit yourself then...");
}
}
//-->
</script>
<form>
Colour <input type="text" name="inputform" id="textbox" value="">
<input type="submit" value="Submit" onclick="findColor();">
</form>
</body>
</html>
谢谢,任何帮助表示赞赏。