如何告诉 jQuery:当加载准备好时,显示这个?
此代码:
$("#permalink a").click(function(id){
var id = this.getAttribute('href');
$("#newPostContent").load(id, function() {
$("#removeTrigger").click(function() {
$("#removeThis").hideToggle();
$("#postSingle").hideToggle();
});
});
$("#postSingle").fadeToggle();
return false;
});
在加载函数完成其工作之前显示#postSingle。我该如何调整呢?
谢谢
(今天问题有点多,谢谢大家:))。
This code:
$("#permalink a").click(function(id){
var id = this.getAttribute('href');
$("#newPostContent").load(id, function() {
$("#removeTrigger").click(function() {
$("#removeThis").hideToggle();
$("#postSingle").hideToggle();
});
});
$("#postSingle").fadeToggle();
return false;
});
Shows #postSingle before the load function finish its work. How can I adjust it?
Thanks
(a lot of questions today, thank you, everybody :)).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您希望在
load
之后发生的所有内容放入回调函数中:Put everything you want to happen after the
load
in the callback function:您是否尝试过将其包装在文档就绪块中?喜欢:
Have you tried wrapping that in a document ready block? Like: