在执行操作之前等待使用 jquery
我使用jquery版本1.3.2,
我想使用事件“load”将页面内容加载到“div”。
我使用: $("#div1").load("page1.php");
---> 有效。
但我想在事件“加载”之前,它等待大约几次。
相同: $("#div1").load("page1.php",{after: 5});
请告诉我该怎么做,非常感谢...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以尝试延迟插件或查看更多传统方法
You can try delay plugin or take a look to more traditional approach
您可以尝试减慢服务器发送响应的速度,例如
You could try to slow the server down in sending its response, e.g.
使用 settimeout() 将是最好也是最简单的方法。
Using settimeout() would be the best and easiest way through.
尝试这个:
Try this: