我正在尝试将文本添加到在拖动可排序项目时显示的占位符框中。jQuery 的 UI 中是否有我缺少的功能?现在我正在尝试获取.append()
信息,但它不起作用。
这是jQuery函数:
//Sortable Function - Edit Wizard
$(function () {
//add text to placeholder box
if ($('.ui-state-highlight').is(':visible')) {
$('.ui-state-highlight').append('<span>MOVE HERE</span>');
};
$(".sortable").sortable({
placeholder: "ui-state-highlight",
//revert: true,
grid: [20, 20],
handle: '.editMove',
opacity: 0.6,
scroll: true,
scrollSensitivity: 80,
zIndex: 10
});
$(".sortable").disableSelection();
});
编辑
我想需要有一些.live()
改变功能.append()
?