獲取圖片寬、高

var image = new Image();
            var that = this;
            image.onload = function(){
                if ("naturalWidth" in image) { // 現代瀏覽器
                    that.width = image.naturalWidth;
                    that.height = image.naturalHeight;
                } else { // IE6/7/8
                    that.width = image.width;
                    that.height = image.height;
                }
                image = undefined;
                delete image;
            }
相關文章
相關標籤/搜索