欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS-alert弹窗的几种效果

程序员文章站 2022-03-01 17:43:02
...

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<button onclick="window.alert('今天过后各位又要放假了')">alert()</button>
	<button onclick="window.confirm('假期虽好,但还是要敲代码')">confirm()</button>
	<button onclick="window.prompt('请输入你的假期欲望')">prompt()</button>
</body>
<script>
//alert(this);
</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例