这是我的示例代码,默认警告框..像这样我想创建一个没有任何点击事件的自定义警报框..
默认提醒框:https://jsfiddle.net/NithyaRubini/m35m9xv9/
<!doctype html>
<html lang="en">
<head>
</head>
<body onLoad="value();">
<script>
function value()
{
var a = "apple";
if (a == "apple")
{
alert("hi");
}
}
</script>
</body>