标签: jquery html css
我想选择所有已禁用的文本框并为它们添加一个类,我该如何在jQuery中执行此操作
答案 0 :(得分:6)
$('input[type=textbox]:disabled').addClass('myClass');