最后,我提出了使用PHP getimagesize()检索图像高度并将其打印为图像ID的解决方案。后来,在JS中,我使用了:var contentheight=jQuery(“.fluidimage”)。属性(“id”);检索高度并执行必要的操作。
以下是PHP代码:
<?php
$imageurl = $pathtoimage;
$image_size = getimagesize($imageurl);
$image_height = $image_size[1];
// For image width, use $image_width = $image_size[0];
?>
<img id="<?php echo $image_height; ?>" class="fluidimage" src="<?php echo $imageurl; ?>" />
下面是将图像高度转换为JS变量的JS代码,您可以在JS中自己的函数中使用该变量:
var contentheight = jQuery(\'.fluidimage\').attr(\'id\');