我有从 php 动态加载图像的页面。图像高度是各种 px 大小(70,130,100,60)。我需要的是如何在警报框中自动获取当前在页面中查看的图像大小我尝试相同的代码不起作用。请帮助
代码
<?php
foreach ($images as $image) {
?>
<img src="<?php echo $image['url']; ?>" class="img_test" id="<?php echo $image['url']; ?>" width="70" style="max-height:70px" onclick="imagesize(this)" />
<?php
}?>
<script>
$( window ).load(function() {
$( ".img_test" ).each(function( index ) {
alert('Height: '+$(this).height());
});
});
function imagesize(obj){
alert($(obj).height());
}
</script>
如果我们点击图片高度会显示。在页面加载后自动无法显示