提问人:Johnny_Bee 提问时间:10/31/2023 最后编辑:ADysonJohnny_Bee 更新时间:10/31/2023 访问量:14
未定义可拖动
Draggable is not defined
问:
我在我的项目中使用脚本标签,说它包括 /core 和 /interaction,但我仍然收到错误:
未定义可拖动。
谁能帮我?
new Draggable(draggableEl,{
itemSelector: '.draggable-event',
eventData:function(eventEl){
return {
title:eventEl.innerText.trim()
}
}
});
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.global.min.js"></script>
我正在构建一个包含外部可拖动事件的日历
答: 暂无答案
评论
var Draggable = FullCalendar.Draggable;