1
我有一個choicefield形式:Django形成ChoiceField:如何將數據屬性添加到輸入收音機?
class CheckoutForm(forms.Form):
shipping_method = forms.ChoiceField(widget=forms.RadioSelect)
我如何添加數據屬性每一個選擇?喜歡的東西:
<ul id="id_shipping_method">
<li>
<label for="id_shipping_method_0">
<input class="form-control" id="id_shipping_method_0" name="shipping_method" type="radio" value="C" data-method="courier"> Express courier</label></li>
<li>
<label for="id_shipping_method_1">
<input checked="checked" class="form-control" id="id_shipping_method_1" name="shipping_method" type="radio" value="yy" data-method="shop">In shop</label></li>
</ul>
你問如何爲每個條目提供不同的'數據method'的?這些方法不應該是'價值'嗎? – Sayse
不,因爲我需要數據屬性JS端:當我點擊收音機時,如果方法等於'手動',我必須禁用送貨地址。 我無法編輯值,因爲我不管理服務器端.. – user1518217