解决图像上的 jQuery 可拖动和可调整大小问题
尝试使用 jQuery 将可拖动和可调整大小应用于图像无法正常工作。它将调整大小但不会拖动。有没有已知的解决方案?
Trying to apply both draggable and resizeable with jQuery to an image does not work correctly. It will resize but not drag. Are there any known solutions to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我将
img
包装在div
中,这似乎工作正常:然后在该
div
上调用 resizeable 和draggable:$("#drag_resize").ressized().draggable();< /code>
这是一个工作示例: http://jsfiddle.net/andrewwhitaker/HNYVk/
This seems to work fine if I wrap the
img
in adiv
:<div id="drag_resize"><img src="img.jpg"/></div>
And then call resizeable and draggable on that
div
:$("#drag_resize").resizable().draggable();
Here's a working example: http://jsfiddle.net/andrewwhitaker/HNYVk/