gpt4 book ai didi

javascript - 为什么此代码无法专注于所需的 div?

转载 作者:太空宇宙 更新时间:2023-11-04 16:10:50 24 4
gpt4 key购买 nike

下面的代码应该关注第二个 div 但它不起作用这段代码有什么问题?

$(function(){
$("#two").focus();
});
body{color:white;}
#fis{height:600px;width: 60px;background-color:red;}
#two{height:600px;width: 60px;background-color:green;}
#thr{height:600px;width: 60px;background-color:blue;}
<div id="fis">hello
</div>
<div id='two'>mr
</div>
<div id='thr'>john
</div

最佳答案

你应该为此使用tabindex

<div id='two' tabindex='1'>mr
</div>

检查更新的代码段;

$(function(){
$("#two").focus();
});
body{color:white;}
#fis{height:600px;width: 60px;background-color:red;}
#two{height:600px;width: 60px;background-color:green;}
#thr{height:600px;width: 60px;background-color:blue;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="fis">hello
</div>
<div id='two' tabindex='1'>mr
</div>
<div id='thr'>john
</div>

Working Fiddle

关于javascript - 为什么此代码无法专注于所需的 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35100588/

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