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: Я перебуваю на …