js添加js文件

js添加js文件

作者:Bright Xu

jQuery为例

if (!window.jQuery) {
    
    
    let script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = "https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js";
    document.getElementsByTagName('head')[0].appendChild(script);
}

猜你喜欢

转载自blog.csdn.net/weixin_44129085/article/details/114380079
今日推荐