本文介绍了想要短促警示框仅3秒钟。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想只显示警告框3秒钟(意味着它会自动显示和隐藏)。我在谷歌搜索很多但没有得到答案。任何建议都非常感谢。
Hi, I want to show alert box only for 3 seconds (Means it show & hide automatically). I have search lot of in google but doesn't get answer. Any suggestion really appreciate.
推荐答案
function fn() {
var w = window.open('', '', 'width=300,height=2px')
w.document.write('Product has been added to your Order List !')
w.focus()
setTimeout(function () { w.close(); }, 2000);
}
这篇关于想要短促警示框仅3秒钟。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!