-1
在使用jquery-ui更改div元素的高度/寬度(或其他css屬性)後,可調整大小如何獲取新屬性並保存它如何使用javascript獲取高度/寬度(或其他屬性)
在使用jquery-ui更改div元素的高度/寬度(或其他css屬性)後,可調整大小如何獲取新屬性並保存它如何使用javascript獲取高度/寬度(或其他屬性)
您可以爲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
}
});
http://stackoverflow.com/questions/16436875/using-javascript-or-html-how-to-get-the-height-and-width-of-a- DIV-或-另一ELEM?RQ = 1 – juvian