我有以下代码
<div id="container">
<div id="_01">1° item</div>
<div id="_02">2° item</div>
<div id="_03">3° item</div>
<div id="_04">4° item</div>
</div>
所以在我的js代码中
$("#container div").draggable({
stop:function(e, ui) {
}});
为了获得可拖动元素的标识符,我必须在stop事件中添加什么内容?
的问候,
答案 0 :(得分:1)
$("#container div").draggable({
stop:function(e, ui) {
alert("id=" + $(this).attr("id");
}});
答案 1 :(得分:0)
你试过了吗?
$(this) // this should be the current element