码迷,mamicode.com
首页 > Web开发 > 详细

修改上传文件的按钮样式

时间:2017-06-19 15:53:59      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:create   ref   abs   display   hidden   hang   name   pointer   filename   

css样式:

.a-upload {
padding: 0px 10px;
height: 30px;
line-height: 30px;
position: relative;
cursor: pointer;
color: #888;
background: #fafafa;
border: 1px solid #ddd;
border-radius: 4px;
overflow: hidden;
display: inline-block;
*display: inline;
*zoom: 1;
margin: 10px;
}

.a-upload input {
position: absolute;
font-size: 100px;
right: 0;
top: 0;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer
}


html代码:

<a href="javascript:;" class="a-upload">
<input type="file" name="" id="">上传头像
</a>
<div class="showFileName"></div>
<div class="fileerrorTip"></div>

jquery代码

function getObjectURL(file) {
var url = null ;
if (window.createObjectURL!=undefined) { // basic
url = window.createObjectURL(file) ;
} else if (window.URL!=undefined) { // mozilla(firefox)
url = window.URL.createObjectURL(file) ;
} else if (window.webkitURL!=undefined) { // webkit or chrome
url = window.webkitURL.createObjectURL(file) ;
}
return url ;
}

 


$(".a-upload").on("change","input[type=‘file‘]",function(){
var filePath=$(this).val();
var arr=filePath.split(‘\\‘);
var fileName=arr[arr.length-1];
$(".showFileName").html(fileName);
$(‘.appIcon‘).attr(‘src‘, getObjectURL($(this)[0].files[0]));
console.log(getObjectURL($(this)[0].files[0]))

})

修改上传文件的按钮样式

标签:create   ref   abs   display   hidden   hang   name   pointer   filename   

原文地址:http://www.cnblogs.com/sunjinggege/p/7048942.html

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