1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <meta charset="UTF-8">
    5. <title></title>
    6. </head>
    7. <style>
    8. div{
    9. position: relative;
    10. width: 80px;
    11. height: 90px;
    12. margin: 0 auto;
    13. }
    14. img{
    15. width: 80px;
    16. height:90px;
    17. }
    18. i{
    19. position: absolute;
    20. color: red;
    21. top: 0px;
    22. left: -10px;
    23. width: 12px;
    24. height: 12px;
    25. line-height: 12px;
    26. background-color: #e1e1e1;
    27. }
    28. i:hover{
    29. cursor: pointer;
    30. }
    31. </style>
    32. <body>
    33. <div>
    34. <img src="img/tao.jpg">
    35. <i>×</i>
    36. </div>
    37. <script>
    38. //获取事件源
    39. var div=document.querySelector("div");
    40. var close=document.querySelector("i");
    41. //注册事件(鼠标点击),处理程序(盒子隐藏)
    42. close.onclick=function(){
    43. div.style.display="none";
    44. }
    45. </script>
    46. </body>
    47. </html>