dom啦1

2020-10-28 12:25:43 浏览数 (1)

代码语言:javascript复制
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
<script>
	//什么是window,窗口。
	//什么是document?代码窗口中的页面
	//document是window的属性,也是一个对象.
	// document对象保存了网页上所有的内容, 通过document对象就可以操作网页上的内容
	console.log(window.document);
	console.log(typeof window.document);
	console.log(window.document.title);
</script>
</body>
</html>
dom

0 人点赞