仅在关闭甜蜜警报后,才能如何关注页面中的文本框。这是我正在使用的代码
swal({
title:'Student Already Logged In!',
text: 'Student already logged in.',
type: 'warning',
timer: 2500,
showConfirmButton: false
});
最佳答案
如果您使用SweetAlert2,则需要使用myElement.focus();
添加一个Promise,如documentation中所述。
例如,您的文本框具有id='my-input'
您需要的JS代码是:
(function() {
swal({
title: 'Student Already Logged In!',
text: 'Student already logged in.',
type: 'warning',
timer: 2500,
showConfirmButton: false
}).then(function() {
document.getElementById('my-input').focus();
});
})()
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.0/sweetalert.min.js"></script>
<input type="text" id="my-input">
或者,如果您正在使用SweetAlert(v1.x),则需要将回调作为
swal()
的第二个参数传递。swal({
title: 'Student Already Logged In!',
text: 'Student already logged in.',
type: 'warning',
timer: 2500,
showConfirmButton: false
}, function() {
document.getElementById('my-input').focus();
});
关于javascript - 仅在关闭甜蜜警报后自动对焦,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51886834/