学无先后,达者为师

网站首页 前端文档 正文

fastadmin js文件注入

作者:左手江湖 更新时间: 2022-01-29 前端文档

 

function zhuruJs(url) {
    let temp = document.createElement('script');
        temp = setAttribute('type', 'text/javascript');
        temp.src = url;
        document.head.appendChild(temp);
}

zhuruJs(location.origin + '/assets/js/a.js');

单个文件使用加入views目录下要应用的html文件即可,

多文件使用加入控制器所对应的js文件。 

原文链接:https://blog.csdn.net/shaofei1986/article/details/120947256

栏目分类
最近更新