如何在使用JQuery停止拖动时更改div的id。
答案 0 :(得分:2)
您可以使用stop
event,如下所示:
$("#draggable").draggable({
stop: function() {
this.id = "newID"; //calc whatever the new ID is, assign here
}
});
You can test it here,在stop
回调中,this
指的是被拖动的元素,所以你想做的就是:)
答案 1 :(得分:1)
$(“myDiv”)。attr('id','newid'); ??