gpt4 book ai didi

javascript - 函数内的 setTimeout 失败

转载 作者:行者123 更新时间:2023-12-02 19:46:00 27 4
gpt4 key购买 nike

该函数接受一个参数whichImage。这是我们正在使用的图像的 HTMLImageElement 对象。图像宽度将减半,3秒后将恢复正常宽度。但是,应该在 3 秒后执行的 setTimeout 代码失败,并显示错误消息whichImage is not Defined。我需要纠正什么才能使该功能正常工作?

function resizeImageFunction(whichImage){
// Get the width of the image
alert(whichImage);
var width = whichImage.width;
var halfwidth = Math.round(width/2);
whichImage.width=halfwidth;
setTimeout("whichImage.width=width;",3000);
}

最佳答案

function resizeImageFunction(whichImage){
// Get the width of the image
alert(whichImage);
var width = whichImage.width;
var halfwidth = Math.round(width/2);
whichImage.width=halfwidth;

setTimeout(function(){
whichImage.width=width;
},3000);
}

关于javascript - 函数内的 setTimeout 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9858235/

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