3,479
个编辑
第16行: | 第16行: | ||
} | } | ||
appendTimeline(); | appendTimeline(); | ||
document. | $(document).ready(function() { | ||
// 确保仅在有时间轴的页面中执行 | // 确保仅在有时间轴的页面中执行 | ||
if ($("#visualization").length) { | |||
const container = document.getElementById("visualization"); | |||
// 解析项目和日期 | // 解析项目和日期 | ||
const itemsArray = $(container).data("items").split(";"); | |||
const items = new vis.DataSet(itemsArray.map(function(item, index) { | |||
const parts = item.split(","); | |||
const content = parts[0].trim(); | |||
const start = parts[1].trim(); | |||
return { id: index + 1, content: content, start: start }; | |||
})); | |||
// Configuration for the Timeline | // Configuration for the Timeline | ||
const options = {}; | |||
// Create a Timeline | // Create a Timeline | ||
const timeline = new vis.Timeline(container, items, options); | |||
} | } | ||
}); | }); |