1 回答
TA贡献1785条经验 获得超8个赞
更改value="true"所有复选框,例如
<input type="checkbox" value="true" name="numbers" id="inumbers" />
如下更新 tr
<tr>
<td class="Spacing">
<input type="checkbox" value="true" name="letters" id="iletters" />
<label for="letters">Letters</label>
</td>
</tr>
<tr>
<td class="Spacing">
<input type="checkbox" value="true" name="numbers" id="inumbers" />
<label for="numbers">Numbers</label>
</td>
</tr>
<tr>
<td class="Spacing">
<input type="checkbox" value="true" name="symbols" id="isymbols" />
<label for="symbols">Symbols</label>
</td>
</tr>
<tr>
<td class="Spacing">
<input type="checkbox" value="true" name="words" id="iwords" />
<label for="words">Words</label>
</td>
</tr>
<tr>
<td class="Spacing">
<input type="checkbox" value="true" name="creative" id="icreative" />
<label for="creative">Add my creative touch</label>
</td>
</tr>
- 1 回答
- 0 关注
- 52 浏览
添加回答
举报