gpt4 book ai didi

javascript - jQuery 函数不返回

转载 作者:行者123 更新时间:2023-12-01 02:04:47 24 4
gpt4 key购买 nike

(函数($){

    $.a.b  = {

title: "ABC",

init: function (id) {
/* do something here */
return id+'a';

}




};

})(jQuery);

当我尝试调用 $.a.b.init('t'); 时它不起作用,我的意思是它没有按预期返回。有什么建议吗?

问题不在于 $.a.b.init('t') 不起作用。问题是它返回整个函数的代码而不是返回字符串。

感谢您的宝贵时间。

最佳答案

尝试

$.a = [];
$.a.b = { ... }

或者更好:

$.a = {b: {
title: "",
init: ...
}};

使用 $.a.b 时,a 未定义,因此无法添加。

关于javascript - jQuery 函数不返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1454023/

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