2
我使用webform生成器,因爲它是我通過CMS創建表單的唯一方法。我無法在呈現時手動編輯html代碼,因此我必須使用jQuery進行操作。對於複選框標記輸出是這樣的:拆分複選框的數組,然後將它們包裝到標籤中
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_0" value="Masonry walls">Masonry walls
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_1" value="Attic">Attic
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_2" value="Non-masonry walls">Non-masonry walls
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_3" value="Roof">Roof
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_4" value="Foundation walls">Foundation walls
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_5" value="Floor">Floor
<br>
<input type="checkbox" name="CAT_Custom_1946925" id="CAT_Custom_1946925_6" value="Ceiling">Ceiling
<br>
我希望他們看起來像這個:
<label class="c-input c-checkbox">
<input id="radioStacked1" name="radio-stacked" type="checkbox">
<span class="c-indicator"></span>
Toggle this custom checkbox
</label>
這是可能的嗎?