最初,当我偶然发现一个问题时,我试图验证用户输入是因为我无法在聚焦时将焦点的光标固定在元素上。这是代码
$("#ChapterCode").keydown(function(e){
if(e.keyCode==9 || e.keyCode==13){
if($(this).val()!=""){
ChapterCode();
get_fees();
return true;
}else{
$(this).focus();
return false;
}
}
});
这将起作用,因为返回false将禁止在单击TAB时更改焦点。 然而
$("#ChapterCode").focusout(function(e){
if($(this).val()!=""){
ChapterCode();
get_fees();
return true;
}else{
e.preventDefault();
$(this).focus();
return false;
}
});
这不会像模糊任何帮助一样吗?我添加了e.preventDefault();知道它不会工作以防万一。非常感谢帮助再次感谢。 请不要告诉我创建一个错误消息或类似的东西,因为它只是不可能。
答案 0 :(得分:1)
它看起来像是不同的浏览器行为。
在Chrome
中它就是这样的。您可以将焦点设置在blur
或focusout
。
FireFox
不是这个。您需要将其包装成setTimeout()
。
$("#ChapterCode").focusout(function(e){
if($(this).val()!=""){
ChapterCode();
get_fees();
return true;
}else{
var self = $(this);
setTimeout(function(){
self.focus();
}, 1);
return false;
}
});
这会将焦点缩回#ChapterCode
。你不能完全防止盒子失去焦点。您需要引入一个包含this
引用的变量,该引用可以通过setTimeout()
的闭包来访问。