HTMLjQuery를 사용하여 요소를 숨기려면 어떻게해야합니까?
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default active">
<input type="radio" name="payment_options" value=1 autocomplete="off" checked>Cash on Delivery
</label>
<label class="btn btn-default" id="bkash-radio">
<input type="radio" name="payment_options" value=2 autocomplete="off">bKash
</label>
</div>
<input type="hidden" name="trx_id" id="trx_id" class="form-control" placeholder="Enter Transaction ID"/>
jQuery를 기능 :
$(document).on("click", "#bkash-radio", function() {
console.log('test');
$("#trx_id").attr("type", "text");
});
$(document).on("blur", "#bkash-radio", function() {
console.log('test');
$("#trx_id").attr("type", "hidden");
});
내가 두 번째 라디오 옵션을 선택하면 텍스트 상자 ID = trx_id을 보여주기 위해 노력하고 있지만, 선택이 해제 될 때 내가 원하는 텍스트 상자를 숨길 수 있습니다. 어떻게해야합니까?
귀하의 코드는 이미 그렇게하고 있습니다. 그렇지 않니? – James
아니요. 그러나 Roko의 대답은 나를 위해 일했습니다. – MiniGunnR