我正在编写一个 Greasemonkey 用户脚本,希望在页面完全完成加载时执行特定的代码,因为它返回一个我想要显示的 div 计数。
问题是,这个特定的页面有时在加载所有内容之前需要一点时间。
我试过了,记录 $(function() { });
和 $(window).load(function(){ });
的包装。然而,似乎没有一个适合我,虽然我可能应用它们是错误的。
我能做的最好的是使用一个 setTimeout(function() { }, 600);
的工作,虽然它并不总是可靠的。
What is the best technique to use in Greasemonkey to ensure that the specific code will execute when the page finishes loading?