渐入渐出的一个bug,大家看看
时间:2009-04-16
来源:互联网
$('#send').click(
function(){
$.ajax({
type:"post",
cache:false,
url:"server.jsp",
dataType:"html",
data:"userName=yangyang",
timeout:"1000",
async:false,
success:function(html){
$('#test').empty();
$('#test').append(html);
$('#test').fadeIn(2000);
},
beforeSend:function(){
$('#test').fadeOut(2000);
//alert("sendBefore");
},
complete:function(){
//alert("complete");
},
error:function(){
alert("error");
}
});
}
);
这段代码并不能达到我预期的效果,先渐出,然后执行ajax请求,然后更新 最后渐入
实际上,直接就显示了返回的结果,然后再进行渐出和渐入的操作。
难道动画效果被无视了?还是默认放到最后来执行??
function(){
$.ajax({
type:"post",
cache:false,
url:"server.jsp",
dataType:"html",
data:"userName=yangyang",
timeout:"1000",
async:false,
success:function(html){
$('#test').empty();
$('#test').append(html);
$('#test').fadeIn(2000);
},
beforeSend:function(){
$('#test').fadeOut(2000);
//alert("sendBefore");
},
complete:function(){
//alert("complete");
},
error:function(){
alert("error");
}
});
}
);
这段代码并不能达到我预期的效果,先渐出,然后执行ajax请求,然后更新 最后渐入
实际上,直接就显示了返回的结果,然后再进行渐出和渐入的操作。
难道动画效果被无视了?还是默认放到最后来执行??
作者: yangyi10 发布时间: 2009-04-16
先让#test, display:none试试
作者: seekarmor 发布时间: 2009-04-16
你看一下,代码不一定对,反正就这个意思,应该可以的
$('#send').click(
function(){
$('#test').fadeOut(2000, function() {
$.ajax({
type:"post",
cache:false,
url:"server.jsp",
dataType:"html",
data:"userName=yangyang",
timeout:"1000",
async:false,
success:function(html){
$('#test').empty();
$('#test').append(html);
$('#test').fadeIn(2000);
},
complete:function(){
//alert("complete");
},
error:function(){
alert("error");
}
});
}
);
});
$('#send').click(
function(){
$('#test').fadeOut(2000, function() {
$.ajax({
type:"post",
cache:false,
url:"server.jsp",
dataType:"html",
data:"userName=yangyang",
timeout:"1000",
async:false,
success:function(html){
$('#test').empty();
$('#test').append(html);
$('#test').fadeIn(2000);
},
complete:function(){
//alert("complete");
},
error:function(){
alert("error");
}
});
}
);
});
作者: seekarmor 发布时间: 2009-04-16
thanks 楼上的代码ok~
作者: yangyi10 发布时间: 2009-04-17
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28