为什么 JQuery 的 load() 不起作用?

发布于 2024-11-08 04:16:22 字数 384 浏览 0 评论 0原文

大家好 在我的主 html 文件中,我有一个 div,其中定义了一些 img:

< div id="preload">
    < img src="http://howindia.com/......jpg" width="1" height="1" /> 
< /div>

在我的 .js 文件中我说:

$("#preload").load(function(){
    alert("something...");
    //call other functions 
});

但只需将所有图像加载到 << div id="预加载">不会触发任何事件并且

Hi everyone
in my main html file, I have this div that some img are define in it:

< div id="preload">
    < img src="http://howindia.com/......jpg" width="1" height="1" /> 
< /div>

and in my .js file I said:

$("#preload").load(function(){
    alert("something...");
    //call other functions 
});

but simply loading all images into the < div id="preload"> won't trigger any event and

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

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

发布评论

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

评论(3

前事休说 2024-11-15 04:16:22

图像加载事件不会传播到 div。尝试向图像添加加载处理程序。

小提琴示例

$("#preload img").load(function(){
    alert("something...");
    //call other functions 
});

The image load event does not propagate to the div. Try adding a load handler to the image(s) instead.

Example fiddle

$("#preload img").load(function(){
    alert("something...");
    //call other functions 
});
南城追梦 2024-11-15 04:16:22

首先,一个快速提示。如果一个被数千(数百万人?)人使用的图书馆“不起作用”,很可能不是你注意到它。在这种情况下,100% 的可能性是您的代码无法正常工作,而不是 jQuery。

至于您的问题,快速查看 load() 文档显示没有重载,将函数视为第一个参数。它的定义是:

.load( url, [ data ], [ complete(responseText, textStatus, XMLHttpRequest) ] )

您是否真的尝试使用 .ready()

或者可能是 .load() 事件,在这种情况下该文档指定

加载事件被发送到元素
当它和所有子元素都已
完全加载。这个活动可以是
发送到与 a 关联的任何元素
URL:图像、脚本、框架、iframe、
和窗口对象

First off, a quick tip. If a library used by thousands (millions?) of people was "not working" chances are it wouldn't be you who noticed it. Its 100% more likely in this situation that it's your code not working, not jQuery.

As for your issue, a quick look at the documentation for load() shows no overload taking a function as the first parameter. It is defined as:

.load( url, [ data ], [ complete(responseText, textStatus, XMLHttpRequest) ] )

Are you maybe really trying to use .ready()

Or perhaps the .load() event, in which case the documentation specifies

The load event is sent to an element
when it and all sub-elements have been
completely loaded. This event can be
sent to any element associated with a
URL: images, scripts, frames, iframes,
and the window object
.

一杆小烟枪 2024-11-15 04:16:22

使用这个:

$(document).ready(function() {
  // do what u want.
});

use this :

$(document).ready(function() {
  // do what u want.
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文