3,479
个编辑
第1行: | 第1行: | ||
/* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */ | /* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */ | ||
function appendCSS(){ | function appendCSS(){ | ||
var head = document.head || document.getElementsByTagName('head')[0]; | var head = document.head || document.getElementsByTagName('head')[0]; | ||
第14行: | 第7行: | ||
} | } | ||
appendCSS(); | appendCSS(); | ||
// 引入 Vis Timeline 库 | // 引入 Vis Timeline 库 | ||
function appendTimeline(){ | |||
var head = document.head || document.getElementsByTagName('head')[0]; | |||
head += '<script src="https://unpkg.com/vis-timeline/standalone/umd/vis-timeline-graph2d.min.js"></script>'; | |||
document.getElementsByTagName('head')[0].innerHTML += head; | |||
} | |||
appendTimeline(); |