6
jQuery: как найти первый видимый ввод / выбор / текстовое поле, исключая кнопки?
Я старался $(":input:not(input[type=button],input[type=submit],button):visible:first") но ничего не находит. В чем моя ошибка? UPD: я выполняю это в $ (document) .load () <script type="text/javascript"> $(window).load(function () { var aspForm = $("form#aspnetForm"); var firstInput = $(":input:not(input[type=button],input[type=submit],button):visible:first", aspForm); firstInput.focus(); }); </script> и в отладке я вижу, что firstInput пуст. UPD2: я нахожусь на странице …