zoukankan      html  css  js  c++  java
  • html中自定义上传文件的样式

    
    

    <script> $(function(){ $("#avatsel1").click(function(){ $("input[type='file']").trigger('click'); }); $("#avatval").click(function(){ $("input[type='file']").trigger('click'); }); $("input[type='file']").change(function(){ $("#avatval").val($(this).val()); }); }); </script>
    
    
    
    <div class="input-file">
       <input type="text" id="avatval" placeholder="请选择文件···" readonly="readonly" />
       <input type="file" name="avatar" id="avatar"/>
       <a href="javascript:void(0);" class="button-selectimg" id="avatsel1">选择文件</a>
    </div>
     
    a[class="button-selectimg"] {
                    color: #00A2D4;
                    padding: 4px 6px;
                    border: 1px dashed #00A2D4;
                    border-radius: 2px;
                    text-decoration: none;
                }
                
                input[id="avatval"] {
                    padding: 3px 6px;
                    padding-left: 10px;
                    border: 1px solid #E7EAEC;
                    width: 230px;
                    height: 25px;
                    line-height: 25px;
                    border-left: 3px solid #3FB7EB;
                    background: #FAFAFB;
                    border-radius: 2px;
                }
                
                input[type='file'] {
                    border: 0px;
                    display: none;
                }

    
    
  • 相关阅读:
    BZOJ3512 DZY Loves Math IV
    HDU5608 function
    数论
    动态点分治
    tarjan
    插头DP
    斯坦纳树
    css中的display(显示)和visibility(可见性)
    简单的数据整理, 递归算法
    java链接数据库构建sql语句的时候容易记混的地方
  • 原文地址:https://www.cnblogs.com/xinheng/p/9509950.html
Copyright © 2011-2022 走看看