【发布时间】:2020-11-14 18:18:00
【问题描述】:
我正在使用下面的代码在我的网页上显示一些动画效果的数据
.done(function (response) {
$(".loadig-overlay").hide();
$('#Container').toggle('slide', {
direction: 'left'
}, 250, function () {
$("#Container").html(response);
$('#Container').toggle('slide', {
direction: 'right'
}, 250);
});
})
#container html 被响应中收到的替换,但未应用动画效果
【问题讨论】:
标签: javascript jquery jquery-ui jquery-plugins