找到“这个”的名字

时间:2011-10-24 22:19:28

标签: javascript jquery

  

可能重复:
  jquery - finding the name of the element I have a reference to

我有一个droppables / draggables的小问题。

如果你拥有的只是

,是否有可能得到一个被删除的div的id
$(this) 

进入辅助部门。例如:

$("#"+ place).droppable({ accept:  tile,  drop:  handler,  zIndex: 0 }); 

...

function handler(event, ui){ 
 $(this).css('background-image','url(pretzel-icon-clip-art.jpg)');
 $(ui.draggable).remove();  
}

我有几个瓷砖拖动,所以区分它们变得有用。

任何帮助表示赞赏,

1 个答案:

答案 0 :(得分:0)

$(this).attr('id');

应该这样做。