1

我需要一点指导。我试图延迟这两个函数的执行,直到页面完全加载或定时炸弹在 5000 毫秒后发生。

我正在使用最新的 jquery 1.6

提前感谢您的帮助和代码片段:)

$("a.siteNavLink").each(function() {
   var _href = $(this).attr("href"); 
   $(this).attr("href", _href + '?p=client');
});
$("a.footernav").each(function() {
   var _href = $(this).attr("href"); 
   $(this).attr("href", _href + '?p=client');
});
4

2 回答 2

3

您可以使用

$(window).load(function(){ your code here }) // page has loaded including images 

或者

$(document).ready(function(){ your code here }) // dom has loaded 
于 2011-10-02T19:17:18.850 回答
2
$(document).ready(function() {
  // Your code here
});

这将使您的代码仅在文档完全加载时运行

jQueryready()文档

于 2011-10-02T19:17:12.543 回答