html代码
<img src="/img/zhengmian.png" alt="" class="file1">
<input type="file" id="file1" style="display:none;"/>
jq代码
//上传头像$(function () { $(".file1").click(function () { $(this).siblings('#file1').click(); });
});