3,479
个编辑
第12行: | 第12行: | ||
function appendTimeline() { | function appendTimeline() { | ||
var script = document.createElement('script'); | var script = document.createElement('script'); | ||
script.src = 'https://unpkg.com/vis-timeline/standalone/umd/vis-timeline-graph2d.min.js'; | script.src = 'https://unpkg.com/vis-timeline@7.7.3/standalone/umd/vis-timeline-graph2d.min.js'; | ||
document.head.appendChild(script); | document.head.appendChild(script); | ||
} | } | ||
第19行: | 第19行: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
// 确保仅在有时间轴的页面中执行 | // 确保仅在有时间轴的页面中执行 | ||
if ($(" | if ($(".visualization").length) { | ||
const container = document. | const container = document.getElementByClass("visualization"); | ||
// 解析项目和日期 | // 解析项目和日期 |