6
jQuery: làm thế nào để tìm thấy các nút đầu vào / select / textarea có thể nhìn thấy đầu tiên?
Tôi đã thử $(":input:not(input[type=button],input[type=submit],button):visible:first") nhưng nó không tìm thấy gì cả. Lỗi của tôi là gì? UPD: Tôi thực hiện điều này trên $ (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> và trong phần gỡ lỗi, tôi …