2014-06-15 108 views

回答

0

您可以爲stop事件添加處理程序。據jQuery UI API documentation

$(".selector").resizable({ 
    stop: function(event, ui) { 
     ui.size; //The current size represented as { width, height } 
     ui.originalSize; //The size represented as { width, height } before the resizable is resized 
    } 
}); 
相關問題