我对使用ID感到困惑。我可以使用此代码添加隐藏字段吗?我在“课程”文本字段中使用的隐藏字段使用相同的ID?
<div class="form-item left">
<label for="course"><span class="req">*</span>Course</label>
<input type="text" class="text" id="course" name="course" />
<input type="hidden" id="course" name="school" value="Contacted from Student
sign-up page" />
</div>
THX
答案 0 :(得分:1)
在HTML文档中,ID必须是唯一的。 You should only use an ID once
id属性指定其元素的唯一标识符(ID)。
如果您想在字段之间建立一些“连接”,请考虑使用class
或data-
attribute。