传递一个img对象。
function ShowImage(img) { var pic = document.createElement("img"); pic.src = img.src; alert(pic.width + ", " + pic.height);}