मैंने कोशिश की
$(":input:not(input[type=button],input[type=submit],button):visible:first")
लेकिन यह कुछ भी नहीं है।
मेरी क्या गलती है?
UPD: मैं इसे $ (दस्तावेज़) .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: मैं शेयरपॉइंट के तहत चलने वाले ASP.NET पेज में हूं।
मैंने अब तक पाया है कि कुछ तत्वों के लिए यह उन्हें (निश्चित लोगों के लिए) और कुछ के लिए नहीं मिलता है। :(