我正在尝试使用jquery实现对表行的过滤。我有像http://jsfiddle.net/NKNmW/1/
这样的标记当我点击过滤器按钮时,我正在显示文本框。现在我想知道我在输入哪个文本框,即文本框的索引。为此我写了一个keyup事件,调用下面的函数。
var filterQuery = function (thisElement) {
console.log(thisElement.index());
};
$(document).on('keyup', '.filterBox', function () { filterQuery($(this)); });
但我无法获取输入文本框的索引。我是否以错误的方式使用index()
函数?谁能说出错误在哪里?