JS淘宝小广告
Posted lxabner
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS淘宝小广告相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
margin:0;
padding:0;
}
#app{
width: 295px;
height: 160px;
position: relative;
}
#app img
{
position: absolute;
right: 0;
}
#app #close{
position: absolute;
width: 18px;
height:18px;
border: 1px solid #e0e0e0;
text-align: center;
line-height: 18px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="app">
<img src="img/sntk-top-code.png" id="code">
<span id="close">X</span>
</div>
<script>
var close=document.getElementById(‘close‘);
var code=document.getElementById(‘app‘);
close.onclick=function(){
app.style.display="none"
}
</script>
</body>
</html>
以上是关于JS淘宝小广告的主要内容,如果未能解决你的问题,请参考以下文章