2

我正在使用 jquery-1.7.2.min.js

我收到类型错误:

$("#TextBox1").removeattr is not a function [Break On This Error]   
$("#TextBox1").removeattr("disabled"); 

为什么?

4

3 回答 3

9

正确的函数名称是removeAttr(),而不是removeattr

$("#TextBox1").removeAttr("disabled");

但从 jQuery 1.6 开始,最好使用.prop()设置原生属性的方法,例如disabledchecked

$('#TextBox1').prop('disabled', false);
于 2012-07-26T07:24:16.857 回答
1

尝试这个

$("#TextBox1").removeAttr("disabled");
于 2012-07-26T07:26:42.643 回答
0

正确的函数名称是removeAttr(),而不是removeattr()

$("#TextBox1").removeAttr("disabled");

这是骆驼案。

于 2016-09-12T15:00:54.353 回答