在 jAlert 之后设置焦点

Set focus after jAlert

我正在使用 jQuery 插件 jAlert 来显示警告框。

我想在显示 jAlert 后聚焦一个文本框,如下所示:

jAlert("Error", "Please enter EmailID.", function(){
  document.getElementById('txtEmail').focus();
}, 1);

但是此代码不会等待用户单击“确定”按钮并且文本框在单击“确定”按钮之前获得焦点。

那么如何在用户点击后聚焦它,就像一个回调函数。 提前致谢。

jAlert 不像 JavaScript alert 那样运行,jAlert 有一个回调函数并参考 enter link description here

 $("#txtEmail").focus();