jquery实现文本框的禁用和启用
话不多说,附上实例代码,仅供大家参考
禁用文本框
//文本框禁用 $("input[type='text']").each(function () { $("#" + this.id).attr("disabled", true); });
启用文本框
//文本框启用 $("input[type='text']").each(function () { $("#" + this.id).removeAttr("disabled"); });
相关推荐
王练 2020-06-12
81463166 2020-05-16
Reiki 2020-05-04
82550495 2020-05-01
zcl 2020-03-04
donghongbz 2020-01-17
tangfenjuan 2019-12-02
heshanking 2019-10-29
Passerby 2019-10-28
89463661 2019-11-05
Clarence 2011-11-18
chang00 2015-06-17
xuewenke 2012-05-19
87281248 2018-03-13
zZoOoOJaVa 2018-02-19
mianhuantang 2009-12-11
srchange 2019-08-19
echoright晓戈 2011-11-21
yuqiuyao 2018-11-23