gpt4 book ai didi

javascript - 在 Jquery 中页面加载后将焦点设置在输入上?

转载 作者:行者123 更新时间:2023-12-02 18:01:46 25 4
gpt4 key购买 nike

我试图将焦点设置在加载页面后表单的第一个输入上,但它不起作用!

$("#New").click(function() {
var area = $(this).attr("name");
$("#txtHint").hide().load("add_data.php?area=" + area, function(){
$(this).closest("form").find(':input:enabled:visible:first').focus();
}).fadeIn('slow');
//$(this).closest("form").find(':input:enabled:visible:first').focus();
});

我可以帮忙吗?

最佳答案

假设您有以下代码:

<form id="formId">
<input type="text">
<input type="text">
<input type="text">
</form>

编写此 JQuery 代码:

$("#formId input:text").first().focus();

包裹起来
$(document).ready(); 

关于javascript - 在 Jquery 中页面加载后将焦点设置在输入上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20467802/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com