使用 Jquery UI 获取正在调整大小的图像的 ID
我正在使用 Jquery UI 拖放图像并调整图像大小。我正在调整 div 中的图像大小并拖动 Div,以解决 Jquery UI 中拖动并调整 div 大小时出现的错误。
如何找到正在调整大小的图像的 div ID?
我的代码如下:
$("img").resizable({ handles:'n,e,s,w,ne,se,nw,sw' , maxHeight: 300, aspectRatio: true,
stop: function(event, ui) { alert( // want to send div ID of the image);} });
HTML代码
<div id="pic1" style="float:left"> <img src="image source" height="150"></div>
我已经尝试获取图像的div ID但未成功
1.使用 ui.originalElement[0].attr('id'), ui.originalElement.attr('id') 2.使用event.trigger.id
I am using Jquery UI to drag and drop and resize images. I am resizing the image within the div and dragging the Div to resolve the bug in Jquery UI if one drags and resizes div.
How do I find the div ID of the image being resized?
My code is as follows:
$("img").resizable({ handles:'n,e,s,w,ne,se,nw,sw' , maxHeight: 300, aspectRatio: true,
stop: function(event, ui) { alert( // want to send div ID of the image);} });
HTML code
<div id="pic1" style="float:left"> <img src="image source" height="150"></div>
I already tried unsuccessfully to get div ID of the image
1. using ui.originalElement[0].attr('id'), ui.originalElement.attr('id')
2. using event.trigger.id
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会给你你想要的东西
This should give you what you were after