我正在使用 JS 计算包含各种大小的文本和图像的三列的高度。
这是我正在使用的 JS:
maxHeight = 0;
$('.equalheight').each(function() {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
});
$('.equalheight').css({ height: maxHeight + 'px' });
这适用于多个浏览器的桌面,但是,它不适用于某些移动设备。它适用于我的 iPad Mini(最新的 iOS),但不适用于其他人的 iPad 3 或 iPhone。它也不适用于使用股票浏览器的三星 Galaxy S4。
我该如何解决这个问题?
这是有问题的网站。