代码示例:(标识:eg_js_alert)
<!DOCTYPE html>
<html>
<body>

<h1>JavaScript 警告框</h1>

<button onclick="myFunction()">试一试</button>

<script>
function myFunction() {
  alert("我是一个警告框!");
}
</script>

</body>
</html>
运行结果: