11.11 警告框alert

11.10

警告框alert

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function myFunction(){
    alert("你好,我是一个警告框!");
}
</script>
</head>
<body>

<input type="button" onclick="myFunction()" value="显示警告框" />

</body>
</html>
原文地址:https://www.cnblogs.com/wangdayang/p/14159468.html