$(function () { $('#test').blur(function () { var that = this; //或者用闭包 setTimeout(function () { $(that).focus(); },100); }); });
$('#test').blur(function() {$(this).focus();});
2024-03-15 19:27:42
$(function () { $('#test').blur(function () { var that = this; //或者用闭包 setTimeout(function () { $(that).focus(); },100); }); });
$('#test').blur(function() {$(this).focus();});