一個給定的字符串匹配的任何行,如果我有一個表:如何隱藏的表,它的第三個單元格的值不JQuery的
<table id="myTable">
<tr>
<td>1</td><td>2</td><td>NoMatch</td><td>4</td>
</tr>
<tr>
<td>1</td><td>2</td><td>Match</td><td>4</td>
</tr>
</table>
我一直在努力:
$(document).ready(function() {
$('input#myInput').keyup(function (val) {
// for each third td of each row, if this value does not contain: this.val() then hide it
});
});
所以,你會想'NoMatch'列隱藏,如果你在'input'類型'Match'? – 2011-12-21 00:41:27
@AndrewWhitaker,是的,這是我的目標 – 2011-12-21 00:43:35