码迷,mamicode.com
首页 > 其他好文 > 详细

定义file input

时间:2017-01-09 11:04:13      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:pre   add   query   float   indexof   padding   label   this   jquery   

<div class="inputFileWrapper">
         <label for="inputFile">
             <input type="file" id="inputFile"/>
            <span class="custorm-style">
             <span class="left-button">上传头像</span>
             <span class="right-text" id="rightText"></span>
            </span>
         </label>
    </div>
 .inputFileWrapper label{
            display: block;
            float: left;
            position: relative;
        }
        .inputFileWrapper input[type="file"]{
            position: absolute;
            width: 1px;
            height: 1px;
            clip:rect(0,0,0,0);
        }
        .inputFileWrapper .custorm-style{
            display: block;
            width: 390px;
            height: 50px;
        }
        .inputFileWrapper .custorm-style .left-button{
            width: 80px;
            line-height: 50px;
            background: #008ac7;
            color: #fff;
            display: block;
            text-align: center;
            float: left;
        }
        .inputFileWrapper .custorm-style .right-text{
            width: 300px;
            height: 40px;
            line-height: 50px;
            display: block;
            float: right;
            padding: 4px;
            border: 1px solid #008ac7;
            overflow: hidden;
            -ms-text-overflow: ellipsis;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

 

<script src="js/jquery-1.11.1.min.js"></script>
<script>
         var fileBtn = $("input[type=file]");
         fileBtn.on("change", function(){
                 var index = $(this).val().lastIndexOf("\\");
                 var sFileName = $(this).val().substr((index+1));
                 $("#rightText").html(sFileName);
             });
</script>

 自定义input file 的样式,

定义file input

标签:pre   add   query   float   indexof   padding   label   this   jquery   

原文地址:http://www.cnblogs.com/wangxue420/p/6264281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!