上传图片的格式验证
$("#headPic").change(function(){
var f=$("#headPic").val();
if(f==""){
alert("请上传图片");
return false;
}else if(!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(f)){
alert("图片类型必须是.gif,jpeg,jpg,png中的一种")
return false;
}
})