我想在一段时间后消失警报框。我听说在Javascript中这是不可能的,那么还有另一种方法可以实现这一点吗?
答案 0 :(得分:2)
试试这个jsbin代码 - 一个自定义提示框
<强> http://jsbin.com/ibUrIxu/1/edit 强>
或在 .html
文件
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<script>
function customAlert(msg,duration)
{
var styler = document.createElement("div");
styler.setAttribute("style","border: solid 5px Red;width:auto;height:auto;top:50%;left:40%;background-color:#444;color:Silver");
styler.innerHTML = "<h1>"+msg+"</h1>";
setTimeout(function()
{
styler.parentNode.removeChild(styler);
},duration);
document.body.appendChild(styler);
}
function caller()
{
customAlert("This custom alert box will be closed in 2 seconds","2000");
}
</script>
</head>
<body onload="caller()">
</body>
</html>
答案 1 :(得分:0)
您可以使用自定义提醒消息执行此操作。通知框架的一个示例是ToastR。您还可以创建自己的消息框架。 但是,您无法关闭常规JavaScript警告框。
答案 2 :(得分:0)
Working Demo - 这是一个自定义警告框,可以满足您的需求
function cancelDiv() {
$("#div1").hide();
}
function ShowDiv() {
$("#div1").css("backgroundColor", "white");
$("#div1").show();
setTimeout(function(){$("#div1").hide()}, 3000)
}
$(function () {
$("#div1").hide();
$("#div1").draggable();
});