如何选择第一个可见文本框,文本区域或下拉列表 - 其中未选择任何选项?下面的代码是有效的,但我想通过不必在第一个文本输入上使用.firstTextInput类来使它更通用。
$firstInput = $(this).find('input[type=text],textarea,select').filter(':visible:first');
if ($firstInput.val() === "") {
$firstInput.focus();
}
else {
$(".firstTextInput").focus();
}
提前致谢
答案 0 :(得分:2)
您可以通过以下方式选择第一个可见文本框textarea: -
0
您可以使用以下代码选择下拉列表: -
select * from table
where LEN(field) > 0 and field not like '%[^0]%'