<!DOCTYPE html>
<html>
<head>
<title>在div中包含一个网页</title>
<style>
.container {
width: 90%;
margin: 0 auto;
}
.div1 {
width: 100%;
height: 100%;
background-color: #f1f1f1;
}
.div2 {
width: 100%;
height: 500px;
background-color: #ccc;
margin-top: 20px;
}
.div3 {
width: 100%;
height: 500px;
background-color: #ccc;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
</div>
</body>
</html>
<script>
// 在这里写JavaScript代码
</script>
这个代码会在一个页面中展示3个div,其中div1和div3是灰色背景的,并且页面会展示一个网页。这个网页中包含div1、div2和div3。你可以将<script>
标签中的JavaScript代码插入到<body>
标签中,以便在页面加载后执行。
领取专属 10元无门槛券
手把手带您无忧上云