如何在jQuery中使用javascript调用方法?

发布于 2024-12-28 04:07:02 字数 446 浏览 2 评论 0原文

是否可以使用javascript的call方法(如[mdn文档]中所述) 为了传递参数 this

例如,有这样的代码:

console.log(this);
$('#image_id').load(function () {
    console.log(this);
});

我希望第二个 this (包含在 load 函数 中的那个)与第一个相同。

我尝试过

console.log(this);
$('#image_id').load.call(this, function () {
    console.log(this);
});

但它不起作用。

预先感谢大家的任何建议。

Is it possible to use the call method of javascript (as described in the [mdn documentation])
in order to pass the argument this?

Having for example this code:

console.log(this);
$('#image_id').load(function () {
    console.log(this);
});

I want that the second this (the one included in the load function) refers to the same as the first one.

I've tried with

console.log(this);
$('#image_id').load.call(this, function () {
    console.log(this);
});

But it doesn't work.

Thank you all in advance for any suggestion.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

狠疯拽 2025-01-04 04:07:02

您不需要 call (或 apply),

您应该这样做:

var that = this;
console.log(this);
$('#image_id').load( function () { 
    console.log(that); 
});

Javascript 具有词法作用域,这意味着变量 that 可用到您的回调,并具有其定义位置的值。在本例中,that 被定义为外部作用域中的 this

You don't need call (or apply)

You should do this instead:

var that = this;
console.log(this);
$('#image_id').load( function () { 
    console.log(that); 
});

Javascript has lexical scoping, which means that the variable that is available to your callback, and has the value of where it is defined. In this case, that is defined to be this in the outer scope.

童话里做英雄 2025-01-04 04:07:02

不是那样的,因为你没有调用回调。这是内部调用的。

不过,您可以使用 .bind

console.log(this);
$('#image_id').load( function () {
    console.log(this);
}.bind(this));

但它在旧版浏览器中不可用。 (这是本机 .bind(),不是 jQuery 的。)


jQuery 有一个可以工作的东西,称为 $.proxy...

console.log(this);
$('#image_id').load($.proxy(function () {
    console.log(this);
},this));

...其中第一个参数是您的函数,第二个参数是您要在回调中用于 this 的值。

Not like that, because you're not calling the callback. It's being called internally.

You could use .bind though.

console.log(this);
$('#image_id').load( function () {
    console.log(this);
}.bind(this));

But it isn't available in older browsers. (This is native .bind(), not jQuery's.)


jQuery has something that will work called $.proxy...

console.log(this);
$('#image_id').load($.proxy(function () {
    console.log(this);
},this));

...where the first argument is your function, and the second argument is the value you want to use for this in the callback.

放肆 2025-01-04 04:07:02

是的,您可以使用任何 .call jQuery 函数,但这只会影响该函数。您传递的函数是一个单独的回调函数,其中 this 由 jQuery 控制。

您可以使用 $.proxy 强制回调上下文。

$('#image_id').bind( "load", $.proxy( console.log, console, this ) );

如果你想做的不仅仅是记录,它会变得更难看:

$('#image_id').bind( "load", $.proxy( function(){
     console.log( this );
     alert( this );
}, this ) );

Yes you can .call jQuerys function with whatever, but that only affects that function. The function you pass is a separate callback function with this controlled by jQuery.

You can use $.proxy to force a context of the callback.

$('#image_id').bind( "load", $.proxy( console.log, console, this ) );

If you wish to do more than logging it becomes more ugly:

$('#image_id').bind( "load", $.proxy( function(){
     console.log( this );
     alert( this );
}, this ) );
任谁 2025-01-04 04:07:02
var self = this;
$('#image_id').load(function(){
    (function(){
        console.log(this);
    }).call(self);
});
var self = this;
$('#image_id').load(function(){
    (function(){
        console.log(this);
    }).call(self);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文