/** * 要校驗尺寸的圖片元素的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; } // 構建圖片 image = new Image(); image.src = url; // 加載圖片 return image.onload = function() { // 如果直接校驗的話image.width與image.height還未賦值,所以設置延遲1ms后校驗 setTimeout(function() { if (image.width != width || image.height != height) { // 校驗不通過,返回false alert(id + "上傳的尺寸為:" + image.width + "*" + image.height + ",應上傳:" + width + "*" + height); return false; } // 校驗通過,返回true return true; }, 1); }; }
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com