week2day1 web前端 删除广告训练
作者:
遇见那天的雨真大 | 来源:发表于
2018-12-10 20:09 被阅读0次<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
position: relative;
}
#hide{
display: none;
}
#ad{
height: 100px;
background-color:pink ;
}
#ad img{
width: 100%;
height: 100%;
}
#ad #close{
position: absolute;
top: 10px;
right: 15px;
width: 30px;
height: 30px;
background-color: gray;
text-align: center;
line-height: 30px;
}
#content{
height: 400px;
background-color: blue;
}
</style>
</head>
<body>
<div id="ad">
<img src="img/slide-1.jpg"/>
<div id="close" onclick="close1()">
X
</div>
</div>
<div id="content"></div>
<script type="text/javascript">
function close1(){
var adNode = document.getElementById('ad')
// adNode.parentNode.removeChild(adNode)
// 直接移出指定标签
// adNode.remove()
adNode.style.display = 'none'
}
</script>
</body>
</html>
本文标题:week2day1 web前端 删除广告训练
本文链接:https://www.haomeiwen.com/subject/wmwdhqtx.html
网友评论