我有以下代码:
我的JavaScript代码:
$('#child' ).resizable({ animate: true, helper: '.ui-resizable-helper', maxWidth: 500, maxHeight: 500, aspectRatio: true });
使用上面的代码,我的可调整大小功能div
可以按预期工作,但是当我添加containment
选项时,将div
s width
和height
调整0
为时,无论在任何方向进行调整。
$('#child' ).resizable({ animate: true, helper: '.ui-resizable-helper', maxWidth: 500, maxHeight: 500, aspectRatio: true, containment: '#parent' });
为什么会这样呢?是虫子吗?