js 动态加载

var dynamicLoading = {
    css: function (path) {
        var head = document.getElementsByTagName('head')[0];
        var link = document.createElement('link');
        link.href = path;
        link.rel = 'stylesheet';
        link.type = 'text/css';
        head.appendChild(link);
    },
    js: function (path, callback) {
        var head = document.getElementsByTagName('head')[0];
        var script = document.createElement('script');
        script.src = path;
        script.type = 'text/javascript';
        script.async = false
        script.onload = script.onreadystatechange = function () {
            callback && callback()
        };
        head.appendChild(script);
    },
    type: 't2023040701',
    time: '1680850266'
}

dynamicLoading.js('http://xxxx.com/resourceFiles/html5_templates/js/jquery-3.5.1.min.js', function () {
    dynamicLoading.js('http://xxxx.com/resourceFiles/html5_templates/t2023040701/Popular/javascript/main.js?1680850266', function () {
        dynamicLoading.js('http://xxxx.com/resourceFiles/js/encryption/encryption.min.js?1680850266')
        dynamicLoading.js('http://xxxx.com/resourceFiles/js/weixin-share2.js?1680850266')
    })
    dynamicLoading.js('http://xxxx.com/resourceFiles/js/visitinfo.js?1680850266')
})
dynamicLoading.css('http://xxxx.com/resourceFiles/html5_templates/t2023040701/Popular/style/style.css?1680850266')
dynamicLoading.css('http://xxxx.com/resourceFiles/html5_templates/t2023040701/Popular/style/player.css?1680850266')