gpt4 book ai didi

javascript - jQuery 函数没有被调用

转载 作者:行者123 更新时间:2023-11-28 15:45:36 24 4
gpt4 key购买 nike

大家好,希望你们一切都好。

我试图调用 jQuery 文件中的一个函数,但由于某种原因,如果我从 if 语句调用它,它就不会被调用。然而,当我使用 .click() 调用它时,会调用相同的函数。

if 语句工作正常。

这是我的 jQuery 代码。

$(document).ready(function () {
var hello = 1;
if (hello == 1) {
console.log("True");
helloWorld();
} else {
console.log("False");
}
$('#en').click(helloWorld(pathname));

function helloWorld() {
return function () {
console.log("function called");
}
});
});

最佳答案

您正在使用

var hello==1; 

而不是

var hello=1;

关于javascript - jQuery 函数没有被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22478814/

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