-1
下面我有以下代碼:您如何使單選按鈕文字可點擊?
<div class="customisation-color-options">
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<div class="customisation-custom-color radio">
<label for="default-color">
<input type="radio" class="attribute_radio not_unifrom" name="{$groupName|escape:'html':'UTF-8'}" value="{$id_attribute}" {if ($group.default == $id_attribute)} checked="checked"{/if} />
<span>
{if $id_attribute == 25}
Utilisez la couleur par défaut
{else}
{$group_attribute|escape:'html':'UTF-8'}
{/if}
</span>
</label>
{if $id_attribute == 26}
<input type='text' id="custom-color-picker" class="not_unifrom"/>
{/if}
</div>
{/foreach}
</div>
我想使文本「Utilisez拉傳送彩色面值défaut」和「Choisissez VOTRE傳送彩色」 clikable就像單選按鈕。而且我還需要通過點擊激活顏色選擇器來更改單選按鈕。
謝謝