答案 0 :(得分:0)
尝试使用:selected
if ($t.find('> select > option').is(":selected:contains('" + data[d] + "')")) {
答案 1 :(得分:0)
您可以尝试将过滤条件更改为
$("#fbody").find("option:selected").each(function () {
if ( data.indexOf( $( this ).text() ) != -1 ) //updated this line
{
$( this ).parent().parent().parent().show();
}
});
甚至只是
$( data ).each( function ( index, valueArr ){
if ( value.indexOf( valueArr ) != -1 )
{
$td.parent().show();
}
} );
如果您想将TD中的部分值与文本框中输入的值进行比较
protected void bindParametersForCollection(QueryCollection qc,
java.lang.Object[] params,
java.sql.PreparedStatement stmt)
throws java.sql.SQLException