按钮上传文件:

         

 <input type="file" />

file的意思为提交    

 

HTML按钮实现!!!文件上传,遮罩层

 

 

      每个游览器的显示方式都不一样哦

     

      遮罩层:   设两个id

 

<style type="text/css">
         #bg{ display: none;  position: absolute;  top: 0%;  left: 0%;  width: 100%;  height: 100%;  background-color: black;  z-index:1001; opacity: 0.7;  opacity:.70;  filter: alpha(opacity=70);}
         #show{display: none;  position: absolute;  top: 25%;  left: 22%;  width: 53%;  height: 49%;  padding: 8px;  border: 8px solid #E8E9F7;  background-color: white;  z-index:1002;  overflow: auto;}
        
     </style>

 

 

 

 body部分

 

 <input id="btnshow" type="button" value="Show" onclick="showdiv();" />
     <div id="bg"></div>
     <div id="show">测试
         <input id="btnclose" type="button" value="Close" onclick="hidediv();" />

 

 

 

 

js部分

 

 <script language="javascript" type="text/javascript">
         function showdiv() {            
             document.getElementById("bg").style.display = "block";
             document.getElementById("show").style.display = "block";
         }
         function hidediv() {
             document.getElementById("bg").style.display = 'none';
             document.getElementById("show").style.display = 'none';
         }
     </script>

 

 

 

效果图:

HTML按钮实现!!!文件上传,遮罩层

HTML按钮实现!!!文件上传,遮罩层

 

 

其中bg为遮罩层,设置透明度与隐藏

  show为白色框子

相关文章:

  • 2022-01-23
  • 2021-11-17
  • 2022-12-23
  • 2021-12-06
  • 2021-11-12
  • 2021-08-01
猜你喜欢
  • 2021-11-17
  • 2021-11-17
  • 2021-08-14
  • 2021-09-01
  • 2021-06-10
  • 2022-12-23
相关资源
相似解决方案