[程式碼片段]javascript檢查圖片大小和格式

MyCoolDog發表於2016-04-11
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;
        }

相關文章