在style里
其中z-index数值越小图层显示越底下,数值越高显示越上层
主要是让button覆盖在input之上,把input设置成透明,我之前做过,和你这个差不多,贴给你,你稍微改动下<a href="javascript:void(0)">
<div class="fibtn">浏览</div>
<input class="import_file" type="file" name="wm_tssb_ysb_drfk_importFile"
id="wm_tssb_ysb_drfk_importFile" onchange="choose_wm_tssb_ysb_drfk_file(this)"/></a>
浏览字覆盖在input上面,点击浏览会触发onchange事件
.import_file{
position: absolute
margin-left: -70px
width: 60px
height: 30px
opacity: 0
filter: alpha(opacity=0)
}
.fibox{
width: 320px
height: 28px
border: 1px solid #c1c1c1
border-radius: 4px
margin-top: -6px
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)