gpt4 book ai didi

javascript - 如何检索与 jQueryUI 可排序列表的辅助方法相关的数据?

转载 作者:行者123 更新时间:2023-11-28 10:08:04 25 4
gpt4 key购买 nike

我正在使用 jQueryUI 1.8.14,我想了解如何使用与 jQueryUI sortable list 相关的辅助方法:

ui.helper - the current helper element (most often a clone of the item)
ui.position - current position of the helper
ui.offset - current absolute position of the helper
ui.item - the current dragged element
ui.placeholder - the placeholder (if you defined one)
ui.sender - the sortable where the item comes from (only exists if you move from one connected list to another)

例如,如果我运行alert(ui.position),如下所示

$jQ("#sortable").sortable({
update: function(event, ui) {
alert(ui.position)
}
});

我收到如下警报消息:“[object Object]”...如何检查该对象(例如:为了检索位置值- 即整数值)?

最佳答案

使用console.log,然后你可以看到该对象包含什么:)

$("#sortable").sortable({
update: function(event, ui) {
alert("top:" + ui.position.top + " left:" + ui.position.left);
}
});

通过执行以下操作找到此内容:console.log(ui.position);

结果:对象 { top=26, left=10}

关于javascript - 如何检索与 jQueryUI 可排序列表的辅助方法相关的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7927698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com