gpt4 book ai didi

javascript函数-返回值链

转载 作者:行者123 更新时间:2023-11-30 23:42:48 26 4
gpt4 key购买 nike

我需要访问链式函数内函数返回的局部变量

例如。

$("#history_table").bind("sortStart", function() {
var a=30;
return a;
}).bind("sortEnd", function() {
alert(a);
});

在此示例中,我需要访问第一个函数返回的变量 a,sortStart 和 aortEnd 事件将异步触发这两个函数...

最佳答案

该变量需要在外部声明:

var a = 0;
$("#history_table").bind("sortStart", function() {
a=30;
return a;
}).bind("sortEnd", function() {
alert(a);
});

或者使用 .data() 将其作为当前对象的属性功能:

$("#history_table").bind("sortStart", function() {
var a = 30;
$(this).data('a', a);
return a;
}).bind("sortEnd", function() {
var a = $(this).data('a');
alert(a);
});

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

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