gpt4 book ai didi

javascript 变量在初始化后未定义

转载 作者:行者123 更新时间:2023-12-03 11:08:47 24 4
gpt4 key购买 nike

我有下面的代码,它太简单了

var Height = <%= Height %>,
_height;

console.log(Height); // in my test, I got 800

if(Height > 800){

_height = 450;
}
else {
_height = 330;
}
console.log(_height); // it will log 'undefined'

什么部分是错误的?

最佳答案

您的拼写错误(缺少字母)

heigh = 450;

所以,尝试下面的代码:

var Height = <%= Height %>,
_height;

console.log(Height); // in my test, I got 800

if(Height > 800){

_height = 450;
}
else {
_height = 330;
}
console.log(_height);

关于javascript 变量在初始化后未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27704549/

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