//手机号
function patientMobileYZ(){
var value=$("#patientMobile").val();
var p=/^1[3-9]\d{9}$/;
if(value !=null && value.trim()!='' && p.test(value)){
return true;
}else if(value ==null || value==''){
return true;
}else{
layer.tips('请输入正确的手机号!', '#patientMobile' ,{
tips: [3, '#778899']
});
return false;
}
}
//判断上传的是否是图片
$("#sowingmapPhotofile").change(function(e){
var file;
if ((file = this.files[0])) {
//首先判断是否是图片
if(!/image\/\w+/.test(file.type)){
alert('上传的不是图片');
$(this).val('')
return false;
}
}
})