作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只有在甜蜜警报关闭后,我才能将注意力集中在页面中的文本框上。这是我正在使用的代码
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/
我是一名优秀的程序员,十分优秀!