swal弹框后input标签获得焦点

来源:互联网 发布:linux打包多个文件夹 编辑:程序博客网 时间:2024/06/16 15:57
swal({ 
    title: "用户名", 
    text: "用户名不能为空", 
    type: "error", 
    showCancelButton: true, 
    closeOnConfirm: false, 
    confirmButtonText: "我知道了", 
    confirmButtonColor: "#ec6c62" 
}, function() { 
setTimeout(function(){$("#username").focus();},0);
   

});
0 0
原创粉丝点击