gpt4 book ai didi

javascript - 在页面加载 jQuery 时选择文本框

转载 作者:行者123 更新时间:2023-11-28 03:56:09 25 4
gpt4 key购买 nike

我有以下代码,它使用 JavaScript 在页面加载时选择一个文本框。我在下面包含了我的代码的副本。我的问题是这如何在 jQuery 中完成?

<!doctype html>
<html>
<head>

</head>
<body>

<input id="query">

<script type="text/javascript">
function box(query){
document.getElementById('query').focus();
}
box('query');
</script>

</body>
</html>

提前致谢,卡勒姆

最佳答案

您也可以使用 HTML5:

<input type="text" autofocus>

引用:http://www.w3schools.com/html5/att_button_autofocus.asp

跨浏览器兼容性:http://caniuse.com/#feat=autofocus

关于javascript - 在页面加载 jQuery 时选择文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5995570/

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