gpt4 book ai didi

用于调整图像大小的 javascript 在 IE 中不起作用?

转载 作者:行者123 更新时间:2023-11-30 10:34:03 25 4
gpt4 key购买 nike

下面给出的代码将图像大小调整为 160x160,并且适用于 Firefox 和 Chrome,但不适用于 Internet Explorer。为什么?

$(document).ready(function() {
$('#imagePreview img').each(function() {
$('#imagePreview img').each(function() {
var maxWidth = 160; // Max width for the image
var maxHeight = 160; // Max height for the image
var ratio = 0; // Used for aspect ratio
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height

// Check if the current width is larger than the max
if(width > maxWidth){
ratio = maxWidth / width;
$(this).css("width", maxWidth); // Set new width
$(this).css("height", height * ratio); // Scale height based on ratio
height = height * ratio; // Reset height to match scaled image
width = width * ratio; // Reset width to match scaled image
}

// Check if current height is larger than max
if(height > maxHeight){
ratio = maxHeight / height;
$(this).css("height", maxHeight); // Set new height
$(this).css("width", width * ratio); // Scale width based on ratio
width = width * ratio; // Reset width to match scaled image
}
});
});
});

最佳答案

您不是在等待图像加载,因此不能保证它们具有大小(取决于它们是否被缓存)。

你应该替换

$(document).ready(function() {

$(document).load(function() {

话虽这么说,但您似乎可以用这种样式替换整体:

#imagePreview img {
max-width: 160px;
max-height: 160px;
}

(参见 demonstration)

关于用于调整图像大小的 javascript 在 IE 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15083560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com