• 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;
                }

    
    
  • 相关阅读:
    网络配置br0 brtcl
    vlan pvid vid access口 trunk口
    虚拟化设置
    debian配置网络
    ps -a,job,netstat,daemons
    windows用命令行查看硬件信息
    查看linux硬件信息
    ruby send respond_to
    打开Win7休眠模式和离开模式的方法
    vim手册
  • 原文地址:https://www.cnblogs.com/xinheng/p/9509950.html
Copyright © 2020-2023  润新知