这段代码:
$("#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。我该如何调整它?
谢谢
(今天有很多问题,谢谢大家:))。