BOM
- 概念:Browser Object Model 浏览器对象模型
- 组成
- Window:窗口对象
- 1.创建:
- 2.方法:
- 与弹出框有关的方法
- alert() 显示带有一段消息和一个确认按钮的警告框。
- confirm() 显示带有一段消息以及确认按钮和取消按钮的对话框。
- prompt() 显示可提交用户输入的对话框。
- 3.属性:
- 4.特点:
- Window对象不需要创建直接使用 window使用。window.方法名();
- window引用可以省略。方法名();
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script>
/*alert("hello window");
window.alert("hello a");*/
/* var flag = confirm("您确定要退出么");
if (flag) {
//退出操作
} else {
//退出
}*/
var result = prompt("请输入用户名");
alert(result);
</script>
</head>
<body>
</body>
</html>