3 回答
TA贡献1841条经验 获得超3个赞
您可以指定一个回调函数:
$(selector).fadeOut('slow', function() {
// will be called when the element finishes fading out
// if selector matches multiple elements it will be called once for each
});
TA贡献1712条经验 获得超3个赞
在jQuery 1.6版本中,您可以使用.promise()方法。
$(selector).fadeOut('slow');
$(selector).promise().done(function(){
// will be called when all the animations on the queue finish
});
TA贡献1865条经验 获得超7个赞
您也可以使用$.when()等到promise完成:
var myEvent = function() {
$( selector ).fadeOut( 'fast' );
};
$.when( myEvent() ).done( function() {
console.log( 'Task finished.' );
} );
如果您执行的请求很可能失败,那么您甚至可以更进一步:
$.when( myEvent() )
.done( function( d ) {
console.log( d, 'Task done.' );
} )
.fail( function( err ) {
console.log( err, 'Task failed.' );
} )
// Runs always
.then( function( data, textStatus, jqXHR ) {
console.log( jqXHR.status, textStatus, 'Status 200/"OK"?' );
} );
- 3 回答
- 0 关注
- 604 浏览
添加回答
举报