我只想显示警报框 3 秒(意味着它会自动显示和隐藏)。我在谷歌搜索了很多,但没有得到答案。任何建议都非常感谢。
我已经完成了新窗口,但仍在使用警报框找到解决方案。检查我的代码:
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);
}