我正在使用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
答案 0 :(得分:2)
这应该可以为你提供你所追求的目标
$(this).parent().attr('id')