开发者

How in jQuery pass parameters into function after function fadeOut

Hi how i can pass variable into this function

var _index = $("#sideNewsContent_menu li").index($(this)) + 1;

$("#sideNewsContent_body").fadeOut(300, function (index) {

     //HERE i want to use varia开发者_C百科ble _index
});


you could use the fact the "_index" can be used in the closure that you are defining :

var _index = $("#sideNewsContent_menu li").index($(this)) + 1;
$("#sideNewsContent_body").fadeOut(300, function () {
 alert(_index);
});

In javascript, when you define an anonymous function (a closure), you can use all the variables that exist in the current context (except "this" which is a special keyword).


It's already in the scope. Just be sure not to put var _index anywhere in the function, or it'll create a local variable called _index, which will take precedence over the _index variable in the closure.

var _index = $("#sideNewsContent_menu li").index($(this)) + 1;

$("#sideNewsContent_body").fadeOut(300, function (index) {

     _index++;

     alert(_index);
});

Don't do this:

$("#sideNewsContent_body").fadeOut(300, function (index) {

     var _index = _index++;

     alert(_index);
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜