gpt4 book ai didi

jquery - 让 .focus() 在 jQuery 1.4.2 中工作?

转载 作者:行者123 更新时间:2023-12-01 05:10:04 26 4
gpt4 key购买 nike

我正在尝试在输入字段失去焦点时对其进行验证,并在验证失败时重新聚焦该字段。但我似乎无法让这个领域重新聚焦。我在 http://jsbin.com/ahepo/edit 编写了一个测试用例。它在 Firefox 3.6.2 和 IE 8 中失败,但在 Chrome 4.1 中工作。

最佳答案

我唯一想到的是:

$('#field1').focusout(function() {
var $this = $(this);
$this.val('not valid!');
window.setTimeout(function(){
$this.focus();
},1);
});

关于jquery - 让 .focus() 在 jQuery 1.4.2 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2567078/

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