Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqueryを使用してテキストボックスを無効にしようとしています:
$('#<%=txtFrom.ClientID %>').attr('disabled', true);
disabled:のように見えますが、実際にはそうではなく、そこに書き込むことができます。なんで?
更新:コードに入力を追加することで修正されました:
$('#<%=txtFrom.ClientID %> input').attr('disabled', true);
あなたはそれをする必要があります:
$('#YOUR_ELEMENT_ID').attr("disabled", "disabled");