img{height:200px;width:200px};
function ShowIt(img) {
var realImg = document.createElement("img");
realImg.src = img.src;
alert(realImg.width + ", " + realImg.height);
}
假设图片是,图片的宽度为width,高度为height
var width = $("img").width();
var height = $("img").height();
function PreviewImg(imgpath){
var image=new Image();
image.src=imgpath;
alert(image.width);
alert(image.height)
}