如何处理调整大小事件
我需要知道当前正在向东或向西拖动哪个手柄。
$("#mydiv").resizable({
handles: 'e, w',
resize: function(event, ui) {
// to do: get active handle
}
任何帮助将不胜感激。谢谢。
I need to know what handle is currently being dragged, east or west.
$("#mydiv").resizable({
handles: 'e, w',
resize: function(event, ui) {
// to do: get active handle
}
Any help would be appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 jquery 有类,它运行得太慢,只需使用
即可知道东或西调整了大小
with jquery has class it works too slowly, just use
then you can know east or west was resized
检查事件对象:
Inspect the event object:
比这更简单,只需获取事件的目标(即触发事件的 DOM 元素)
it's easier than that, just get the target of the event (which is the DOM element that triggered the event)
这对我有用:(可调整大小的开始事件)
This worked for me: (Resizable start event)
这在 jQuery UI v1.11.4 中对我有用
This works for me in jQuery UI v1.11.4