我有html表格,提交纽芬兰文和材料控制:
<form action="/Profile/UploadFile" enctype="multipart/form-data" method="post" onsubmit="OnUploadSubmit(this)">
在卸载功能方面,情况如下:
if (e.files[0].size > 5000000) {
$( #upload_error ).css( display , block );
$( #upload_error ).text( The file size is too large for upload )
e.preventDefault();
return false;
}
var files = e.files;
var ext = $( #file_uploader ).val().split( . ).pop().toLowerCase();
if ($.inArray(ext, [ jpeg , jpg , png ]) == -1) {
$( #upload_error ).css( display , block );
$( #upload_error ).text( Only, jpg, jpeg, png is allowed );
e.preventDefault();
return false;
}
return true;
}
e. 防止违约和返还不实;不采用工作方式提交。
没有人知道我的问题是什么?
Thanks