我正在尝试使用Jquery遍历一个文本框数组,其中我只想要“启用”的文本框。 谁能给我最好的方法呢?我会使用过滤方法吗?
(即:)
var arrayOfTextBoxes = $("[id$='" + textBoxId + "']");
var enabledTextBoxes = $(arrayOfTextBoxes).????
谢谢!
答案 0 :(得分:3)
//this will find the checkbox if it is enabled
$("#"+textBoxId+":enabled")
答案 1 :(得分:0)
$(arrayOfTextBoxes).filter(':enabled')
或
$("[id$='" + textBoxId + "']:enabled")
首先。