jQuery UI - 使 div 不可调整大小

发布于 2024-10-12 06:35:13 字数 107 浏览 3 评论 0原文

我有一个使用 jQuery UI 调整大小的 div。我怎样才能动态地使其不再调整大小? 我尝试调用 ressized({disabled: true }) 但句柄仍然显示。

I have a div that is made resizable using jQuery UI. How can I dynamically make it not resizable anymore?
I tried calling resizable({ disabled: true }) but the handle still showed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

枕花眠 2024-10-19 06:35:13

使用此代码: .ressized( "destroy" )

Use this code: .resizable( "destroy" )

-残月青衣踏尘吟 2024-10-19 06:35:13

尝试 .ressized("option", "disabled", true);

http://jqueryui.com/demos/resizing/#option-disabled

您的解决方案不起作用,因为根据文档,您需要使用我提到的设置器,如果您想在初始化后禁用它(您代码仅在初始化调用时才有效)

Try .resizable("option", "disabled", true);

http://jqueryui.com/demos/resizable/#option-disabled

Your solution is not working because, as per the documentation you need use the setter that I mentioned, if you want to disable it after initialization (you code will only work if its an initialization call)

手心的海 2024-10-19 06:35:13

哎呀...
在启用“可调整大小”之前,我禁用了它......

Oops...
I was disabling "resizable" before I enabled it...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文