我有selectbox,Checkbox和TextBox字段,SelectBox字段从DB获取其选项值,所以我不知道会有多少个选项。我需要在没有第一个选项的情况下附加相同的selectBox选项文本号,而不是复选框字段的标签文本,然后在用户选中某些复选框选项时,追加用户仅在文本框中选中的内容,并用破折号“-”
分隔
<select id= "selectbox">
<option value="option1">Choice1</option>
<option value="option2">Choice2</option>
<option value="option3">Choice3</option>
</select>
<input type="checkbox" id="chckbox">
<label for="Field3-0">Checkbox1</label>
<input type="checkbox" id="chckbox">
<label for="Field3-1">Checkbox2</label>
<input id= "textfield" type= "text" >