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

    
    
  • 相关阅读:
    七牛云上传博客
    .net 导入Excel
    liunx ln -s 软连接
    dos2unix 命令
    x-csrf-token
    设置git 不提交 修改权限的文件
    nginx 启动、重启、关闭
    命令行导入mysql数据
    mongo 相关命令
    laravel 安装完成后安装 vendor 目录
  • 原文地址:https://www.cnblogs.com/xinheng/p/9509950.html
Copyright © 2011-2022 走看看