当前位置:  开发笔记 > 编程语言 > 正文

调整大小时,jQuery的Resizable Div的Width和Height变为0

如何解决《调整大小时,jQuery的ResizableDiv的Width和Height变为0》经验,为你挑选了0个好方法。

我有以下代码:

我的JavaScript代码:

$('#child' ).resizable({
    animate: true,
    helper: '.ui-resizable-helper',
    maxWidth: 500,
    maxHeight: 500,     
    aspectRatio: true
});

使用上面的代码,我的可调整大小功能div可以按预期工作,但是当我添加containment选项时,将divs widthheight调整0为时,无论在任何方向进行调整。

   $('#child' ).resizable({
        animate: true,
        helper: '.ui-resizable-helper',
        maxWidth: 500,
        maxHeight: 500,     
        aspectRatio: true,
        containment: '#parent'
    });

为什么会这样呢?是虫子吗?

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有