私はjquery-1.7.2.min.jsを使用しています
TypeErrorが発生します:
$("#TextBox1").removeattr is not a function [Break On This Error]
$("#TextBox1").removeattr("disabled");
なんで?
私はjquery-1.7.2.min.jsを使用しています
TypeErrorが発生します:
$("#TextBox1").removeattr is not a function [Break On This Error]
$("#TextBox1").removeattr("disabled");
なんで?
正しい関数名はremoveAttr()
、ではなく、removeattr
です。
$("#TextBox1").removeAttr("disabled");
ただし、jQuery 1.6以降では、やなどのネイティブ属性を設定するためのメソッドを使用することをお勧めし.prop()
ます。disabled
checked
$('#TextBox1').prop('disabled', false);
これを試して
$("#TextBox1").removeAttr("disabled");
正しい関数名はremoveAttr()
、ではなく、removeattr()
です。
$("#TextBox1").removeAttr("disabled");
キャメルケースです。