我有一个 html 表单并在该操作上运行了一个 cgi 脚本,然后我有一个 javascript onsubmit 函数,该函数应该检查单选按钮是否已填写,否则将不会提交。
<script>
function checkscript()
{
.... check if a radio button was clicked otherwise dont submit.
}
</script>
<form action="default.cgi" method="post" onsubmit="return checkscript()" enctype=
"application/x-www-form-urlencoded">
<h1>Choose</h1>
<p><input type="radio" name="Radio" value="1" /><font size="5"
color="#0033CC">Instant Psychology</font><br />
<br />
<input type="radio" name="Radio" value="2" /><font size="5"
color="#CC0000">Instant Geography</font><br />
<br />
<form/>
我可以在 html 文件中的 Javascript 函数中执行此操作,还是需要在 cgi 脚本中执行此操作?