自定义上传按钮

时间:2022-08-28 19:06:48

实现效果如下图:
自定义上传按钮
实现的原理:
a标签将input type=file标签覆盖,然后将input标签透明化,需要用到定位
代码如下:

<div id="imgPreview" style="margin-bottom: 15px;">

<img src="static/img/default.png" name="equ_photo" alt="请上传照片"

style="width: 200px; height: 200px;" /></div>

<a style=" border: 1px solid blue;width: 80px;height: 35px;font-size: 15px; "

id="uploadPhoto" class="btn btn-mini btn-primary" href="#">

<input style="top: 235px;height:35px ;left: 804px;width: 93px;;position:

absolute;cursor: pointer;opacity: 0; "
type="file" name="equ_photo" id="file"

onchange='PreviewImage(this)' />上传照片</a>

该 opacity: 0;属性用来控制input标签的透明度