我的表格有代码
<form class="form" name="frmName" onclick="javascript:check()">
Answer: <input type="text" name="textboxans">
<input type="submit" value="Submit" >
</form>
当用户点击提交按钮时,我想运行一个脚本,如果用户在答案文本框中输入 15,用户会收到一条警报,但如果没有,则会收到另一条消息。这是我放置在我的 HTML 文档头部的代码。
<script>
function check()
var ans="15";
if (document.forms["frmName"]["textboxans"].value==ans){
alert("That is the correct answer");
}
else{
alert("Sorry. That is the incorrect answer");
}
</script>
我仍然遇到问题,当我按下提交按钮时,什么都没有发生。任何人都可以帮忙吗?