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

我想在显示jAlert之后将文本框对准焦点,如下所示:

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


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

因此,如何在用户点击后将其聚焦,就像回调函数一样。
提前致谢。

最佳答案

jAlert不能像JavaScript警报那样运行,并且jAlert具有回调函数并从enter link description here获取引用

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

07-24 20:34