我已经为此工作了一个多小时,并在此处和网络上搜索了答案,但无法使其正常工作,所以我现在请求帮助。
我有一个表格,其中所有字段都必须填写,包括要选择的“单选”按钮,称为“仪器”的单选按钮组。
任何帮助表示赞赏。
这是我的Javascript:
<script type="text/javascript">
function checkFields(f) {
name1 = document.form1.name1.value;
name2 = document.form1.name2.value;
email1 = document.form1.email1.value;
instrument = document.form1.instrument.value;
stylemusic = document.form1.stylemusic.value;
if ((name1 == "") || (name2 == "") || (email1 == "") || (instrument == "") || (stylemusic == "")) {
alert("All fields need to be filled.");
return false;
}
}
和我的表单代码:
<input type="radio" value="percussion" name="instrument">Percussion
<input type="radio" value="wind" name="instrument">Wind