Carbon/02.需求文档/01.原型页面20240529/08-碳足迹/00-碳足迹主页/LCA模型_files/init.js.下载

18 lines
567 B
Plaintext
Raw Normal View History

2024-09-23 14:27:16 +08:00
(function () {
$.holdReady(true);
var script = window.document.createElement("script");
script.type = "text/javascript";
script.async = true;
script.onload = script.onreadystatechange = function (e, isAbort) {
if (isAbort || !script.readyState || /loaded|complete/.test(script.readyState)) {
script.onload = script.onreadystatechange = null;
script = undefined;
}
if (!isAbort) { $.holdReady(false); }
}
script.src = "data/document.js";
window.document.head.appendChild(script);
})();