1

我正在使用可调整大小的 jQuery UI 来调整下面示例中的“包装器”类的大小。如何防止 resizable 将包装器的大小调整为小于下面示例中的内容?我不想使用溢出:隐藏。

谢谢!

<div class="wrapper">
    <form class="content">
        <!-- form elements -->
        <input type="text"/>
        <input type="text"/>
        ...
    </form>
</div>
4

1 回答 1

1

Why can you define a minimal Width to your resizable element?

Have a look here http://api.jqueryui.com/resizable/#option-minWidth

Example http://jqueryui.com/resources/demos/resizable/max-min.html

or try to calculate that minimal.

于 2013-07-23T10:26:54.367 回答