gpt4 book ai didi

javascript - 在 javascript/jquery 中具有参数的函数将不起作用

转载 作者:行者123 更新时间:2023-11-28 21:18:31 25 4
gpt4 key购买 nike

我的函数中有值,但它说它尚未定义。

这是我的代码:

<img onload="getFullnameDetails(263,225)" src="'+getBaseURL()+'js/check/no-image.png" rel="fullname" />

function getFullnameDetails(mainHeight,upperstyle){
setTimeout("fullnameCenter(mainHeight,upperstyle)",2000);
}

function fullnameCenter(mainHeight,upperstyle){
var distOfMainAndUpper = 38;
var mainHalfHeight = 131.5;
var imageHeight = jQuery("img[rel='fullname']").height(); //there is a delay
var imageHalfHeight = imageHeight/2;
var fromImageTopToMainHalf = mainHalfHeight - imageHeight;
var position = imageHalfHeight+fromImageTopToMainHalf-distOfMainAndUpper;
jQuery(".test1").css("bottom",position+"px");
}

这里说 mainHeight 没有定义。为什么会出现这种情况。这发生在这一行: setTimeout("fullnameCenter(mainHeight,upperstyle)",2000);

提前致谢;)

最佳答案

试试这个

function getFullnameDetails(mainHeight,upperstyle){
setTimeout(function() {fullnameCenter(mainHeight,upperstyle);},2000);
}

关于javascript - 在 javascript/jquery 中具有参数的函数将不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6976989/

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