jQuery如何选择第一个可见的文本框,textarea或dropdownlist,其中没有选择任何选项

时间:2016-01-07 08:26:10

标签: jquery

如何选择第一个可见文本框,文本区域或下拉列表 - 其中未选择任何选项?下面的代码是有效的,但我想通过不必在第一个文本输入上使用.firstTextInput类来使它更通用。

$firstInput = $(this).find('input[type=text],textarea,select').filter(':visible:first');
    if ($firstInput.val() === "") {
        $firstInput.focus();
    }
    else {
        $(".firstTextInput").focus();
   }

提前致谢

1 个答案:

答案 0 :(得分:2)

您可以通过以下方式选择第一个可见文本框textarea: -

0

您可以使用以下代码选择下拉列表: -

select * from table
where LEN(field) > 0 and field not like '%[^0]%'