Google Ajax 库 API 和jQuery(函数(){})
我想知道我是否使用的
google.load("jquery", 1);
google.setOnLoadCallback(function() {
// i still need to check if document has finished loading with
$(function() {
// do stuff
});
});
问题是,当调用 google.setOnLoadCallback() 时,它并不意味着文档已完成加载,对吧?或者我可以立即做...下面的事情吗?
google.setOnLoadCallback(function() {
$("#elem").doSomething();
});
i wonder if i use
google.load("jquery", 1);
google.setOnLoadCallback(function() {
// i still need to check if document has finished loading with
$(function() {
// do stuff
});
});
the question is when google.setOnLoadCallback() is called it does not mean the document has finished loading right? or can i do stuff like ... below ... straight away?
google.setOnLoadCallback(function() {
$("#elem").doSomething();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Google AJAX API 文档:
window.load
将始终在 之后触发在大多数情况下,DOMContentLoaded
相当于jQuery(document).ready
。当不可用时,jQuery 将回退到onreadystatechange
或
onload
(IE),或加载
(标准)。由于最坏的情况是 jQuery 和 google 都回退到
load
事件,因此您可以安全地使用第二种方法。From Google AJAX API docs:
window.load
will always fire afterDOMContentLoaded
that is the equivalent ofjQuery(document).ready
for most cases. When not available, jQuery will fallback toonreadystatechange
oronload
(IE), orload
(standard).Since worst case if both jQuery and google falling back to the
load
event, you can safely use the second method.