首页javascriptimgjQuery HTML Element - 如何获得图像的本机高度

jQuery HTML Element - 如何获得图像的本机高度

我们想知道如何获得图像的本机高度。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'>
$(window).load(function(){
    $(document).ready(function(){
       var imgheight = $('img').height();
       console.log(imgheight);
    });
});
</script>
</head>
<body>
  <img
    src="http://www.w3cschool.cn/style/download.png" />
</body>
</html>