我有一個表單,其中有多個選項可以將金額發送到CC處理。我希望用戶選擇支付類型,然後激活金額輸入字段。我試圖通過設置單選按鈕的ID來對應金額輸入字段。如何根據所選單選按鈕啓用輸入金額字段?根據相應的單選按鈕啓用輸入
HTML
<input name="doantion-type" id="general" type="radio" value="General" />
<input name="doantion-type" id="occasion" type="radio" value="Occasion" />
<input name="doantion-type" id="building" type="radio" value="Building" />
<input name="doantion-type" id="program" type="radio" value="Program" />
<input id="general" autocomplete="off" class="input required" type="text" size="30" name="Amount">
<input id="occasion" autocomplete="off" class="input required" type="text" size="30" name="Amount">
<input id="building" type="hidden" value="1000" name="Amount">
<input id="program" type="hidden" value="180" name="Amount">
jQuery的
$("input[name=Amount]").prop('disabled', true);
$('input[name=doantion-type]:radio').click(function() {
var selectedDonation = '#' + $(this).attr('id');
//alert(selectedDonation);
$(selectedDonation).prop('disabled', false);
});
你不能(或至少不應該)做這種方式,因爲標識應該是唯一的。此外,隱藏的輸入將以無論是否可見的形式提交。 – Blazemonger 2013-04-25 17:56:46
+1,這是不好的做法。無效的HTML會殺死小貓。 – PlantTheIdea 2013-04-25 17:58:19
你能否提出一種替代方法來做到這一點?請。 – MG1 2013-04-25 17:59:17