画像を閲覧およびアップロードするときに、画像の高さと幅を知りたいので、これに基づいてサイズを変更して表示します。javascriptでこれを達成できますか?
私はこれを次のコードで試していますが、IEでのみ機能します。他の解決策はありますか?
img_id++;
var id="imgid"+img_id;
image = document.getElementById('submit').value;
document.getElementById('div').innerHTML="<img id='"+id+"' src='"+image+"' >";
document.getElementById(id).style.visibility="hidden";
alert(document.getElementById(id).offsetWidth +'by'+document.getElementById(id).offsetHeight);
ありがとう。