function checkImgType(input) { var this_ = document.getElementsByName(‘imgFile‘)[0]; var filepath = this_.value; var extStart = filepath.lastIndexOf("."); var ext = filepath.substring(extStart, filepath.length).toUpperCase(); if (ext != ".PNG" && ext != ".GIF" && ext != ".JPG") { alert("图片限于png,gif,jpg格式"); return false; } var file_size = 0; if ($.browser.msie) { var img = new Image(); img.src = filepath; if (img.fileSize > 0) { if (img.fileSize > 2 * 1024*1024) { alert("图片不大于2MB。"); document.execCommand("delete"); return false; } } } else { file_size = this_.files[0].size; console.log(file_size / 1024 / 1024 + " MB"); var size = file_size / 1024 / 1024; //alert(size); if (size > 2) { alert("上传的文件大小不能超过2M!"); return false; } } return true; }
时间: 2024-10-05 20:01:06