jQuery UI - 使 div 不可调整大小
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用此代码: .ressized( "destroy" )
Use this code: .resizable( "destroy" )
尝试
.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)
哎呀...
在启用“可调整大小”之前,我禁用了它......
Oops...
I was disabling "resizable" before I enabled it...