欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

分享实用小案例:关闭二维码

程序员文章站 2022-05-30 15:13:08
...

html部分:


二维码
分享实用小案例:关闭二维码
×

css部分
.box {
position: relative;
width: 74px;
height: 88px;
border: 1px solid #ccc;
margin: 100px auto;
font-size: 12px;
text-align: center;
color: #f40;
}

    .box img {
        width: 60px;
        margin-top: 5px;
    }
    
    .close-btn {
        position: absolute;
        top: -1px;
        left: -16px;
        width: 14px;
        height: 14px;
        border: 1px solid #ccc;
        line-height: 14px;
        font-family: Arial, Helvetica, sans-serif;
        cursor: pointer;
    }

js部分

   1. 获取元素 
    var btn = document.querySelector('.close-btn');
    var box = document.querySelector('.box');
    2.注册事件 程序处理
    btn.onclick = function() {
        
        box.style.dislay = 'none';
        }
相关标签: javascript