JQuery Resizing停止后如何获取宽度和高度?
在使用 JQuery UI Ressized 调整 div/元素大小后,有什么方法可以获取其大小吗?
Is there any way of getting the size of a div/element after it has been resized with JQuery UI Resizable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您始终可以使用 height() 和 width()
you can always use height() and width() on a jQuery element
在可调整大小的 init 对象中,为
resizestop
事件定义一个处理程序,然后您可以在其中检查大小。In your init object for the resizables, define a hander for the
resizestop
event, where you can then check the size.添加“停止”事件的处理程序。
您还可以绑定到resizestop。
Add a handler for the 'stop' event.
You can also bind to resizestop.
http://jqueryui.com/demos/resizable/#event-stop