我在jQuery中有以下代码......
$("#sortable2").sortable({
connectWith: '.connectedSortable',
dropOnEmpty: true,
receive: function (event, ui) {
var colNum = $(ui.item).attr("id").replace(/col_/, "");
$.post("/Category/Insert", { title: colNum });
},
var colNum = $(ui ....) 这会从被拖动的项目中获取id。我想知道,我有可能获得它正在被丢弃的容器的ID吗?
答案 0 :(得分:4)
当被删除的项目位于容器的内部和直接后代时,您可以使用parent()
方法访问容器:
var parent_id = $(ui.item).parent().attr('id');