/** * 要校驗(yàn)尺寸的圖片元素的id,寬,高 */ function checkResolution(id, width, height) { // 獲取該圖片元素 var obj = document.getElementById(id); var url, image; // 獲取元素的url源 if (obj.files && obj.files[0]) { if (window.navigator.userAgent.indexOf("MSIE") >= 1) { obj.select(); url = document.selection.createRange().text; } url = window.URL.createObjectURL(obj.files[0]); } else { url = obj.value; url = "file:///" + url; } // 構(gòu)建圖片 image = new Image(); image.src = url; // 加載圖片 return image.onload = function() { // 如果直接校驗(yàn)的話image.width與image.height還未賦值,所以設(shè)置延遲1ms后校驗(yàn) setTimeout(function() { if (image.width != width || image.height != height) { // 校驗(yàn)不通過(guò),返回false alert(id + "上傳的尺寸為:" + image.width + "*" + image.height + ",應(yīng)上傳:" + width + "*" + height); return false; } // 校驗(yàn)通過(guò),返回true return true; }, 1); }; }
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com