gpt4 book ai didi

javascript - 在 jQuery 中将函数作为参数传递?

转载 作者:数据小太阳 更新时间:2023-10-29 04:29:28 24 4
gpt4 key购买 nike

我想向 jQuery 函数传递一个常规函数,而不是通常的匿名函数,但我不确定如何完成这样的事情。

取而代之的是:

function setVersion(feature) {
$.post("some.php", { abc:"abc" },
function(data){
// do something here
}, "json");
}

我想这样做:

function foo(data){
// do something here
}

function setVersion(feature) {
$.post("some.php", { abc:"abc" }, foo, "json");
}

谢谢。

最佳答案

是的,已经工作了。但是你希望它看起来像这样:

function setVersion(feature, myFunction) {
$.post("some.php", { abc:"abc" }, myFunction, "json");
}
setVersion(blah, foo);

关于javascript - 在 jQuery 中将函数作为参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2660025/

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