次のコードを使用すると、新しいレコードを挿入してもテキストボックスが無効になりますか?HTMLで新しいIDを追加するときにテキストボックスを編集して有効にする方法
<input id="code" data-bind="value: Code" name="Code" type="text" placeholder="Your Code" class="form-control input-md" readonly>
次のコードを使用すると、新しいレコードを挿入してもテキストボックスが無効になりますか?HTMLで新しいIDを追加するときにテキストボックスを編集して有効にする方法
<input id="code" data-bind="value: Code" name="Code" type="text" placeholder="Your Code" class="form-control input-md" readonly>
あなたは.prop()メソッドを使用してjQueryの中でそれを行うことができます。再度有効にテキストボックスにテキストボックスや$('input').prop('readonly', false)
を無効にする
$('input').prop('readonly', true)
あなたはjQueryの1.9コントロール
$("#code").attr("readonly", false);
jQueryの< 1.9
$('#inputId').attr('readonly', true);
の属性を変更するためにjQueryのを使用することができます+
$('#inputId').prop('readonly', true);
詳細とコードを入力してください – Hemal