jquery – load()方法已弃用?

前端之家收集整理的这篇文章主要介绍了jquery – load()方法已弃用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我浏览jQuery api并注意到 load method是在已弃用的列表。

Categories: Deprecated | Events > Document Loading

我通常使用这种方法来检查图像是否完全加载。为什么不推荐使用?我应该使用什么?

解决方法

参见 bug #11733,其中描述了此弃用:

The .load() method is an ambiguous signature,it can either be an ajax
load or attach/fire a “load” event. 07001 cannot tell them apart since
it’s a dynamic decision based on arguments.

为了避免与方法签名相关的歧义,现在建议使用on()。例如:

$("selector").load(function() {
    // ...
});

应变成:

$("selector").on("load",function() {
    // ...
});
原文链接:https://www.f2er.com/jquery/184588.html

猜你在找的jQuery相关文章