gpt4 book ai didi

javascript - 我可以在元素聚焦后立即运行调用吗?

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

据我所知,jQuery 的 focus()在元素获得焦点之前被调用。我相信这是因为元素的边框在聚焦时是不同的,并且 when I measure it I get the unfocused border size .

有没有办法在元素获得焦点后立即运行代码?

最佳答案

您可以在短暂的延迟后在超时处理程序中运行代码。

$('.foo').focus(function() {
var foo = this;
setTimeout(function() {
$(foo).whatever();
}, 1);
});

关于javascript - 我可以在元素聚焦后立即运行调用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7660664/

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