$(
'#chooseImage'
).on(
'change'
,
function
() {
//当chooseImage的值改变时,执行此函数
var
filePath = $(
this
).val(),
//获取到input的value,里面是文件的路径
fileFormat = filePath.substring(filePath.lastIndexOf(
"."
)).toLowerCase(),
src = window.URL.createObjectURL(
this
.files[0]);
//转成可以在本地预览的格式
// 检查是否是图片
if
(!fileFormat.match(/.png|.jpg|.jpeg/)) {
error_prompt_alert(
'上传错误,文件格式必须为:png/jpg/jpeg'
);
return
;
}
else
{
$(
'#cropedBigImg'
).css(
'display'
,
'block'
);
$(
'#cropedBigImg'
).attr(
'src'
, src);
}
});