0

我正在尝试将参数传递给ajax.load(). 我想this从父函数传递到ajax.load(). 我想在里面使用这个

这是我的代码:

ajax.done(function(msg) {
    jQuery(this).children('p').append(msg); 
});
4

1 回答 1

4

您可以定义一个变量,该变量将在闭包中保存所需的值:

var $this = $(this);
ajax.done(function(msg) {
    $this.children('p').append(msg); 
});
于 2013-05-10T13:51:43.167 回答