我尽力了
$(":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: 我在运行 Sharepoint 的 ASP.NET 页面中。
到目前为止,我发现对于某些元素,它确实能找到它们(对于固定的元素) ,而对于某些元素则没有