I'd like to select ALL of the disabled textboxes and add a Class to them, how do I do thi开发者_如何学编程s in jQuery
$('input[type=textbox]:disabled').addClass('myClass');
I'd like to select ALL of the disabled textboxes and add a Class to them, how do I do thi开发者_如何学编程s in jQuery
$('input[type=textbox]:disabled').addClass('myClass');
精彩评论