0

我正在使用 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

4

1 回答 1

2

这应该给你你所追求的

$(this).parent().attr('id')
于 2011-09-11T23:42:53.070 回答