欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在HTML页面中加载js文件和css文件的方法

程序员文章站 2022-06-17 08:05:47
1.在HTML页面加载js文件的方法: 2.在HTML页面加载css文件的方法: ......

1.在HTML页面加载js文件的方法:

function loadScriptFile(filePath){
    var script = document.createElement("script");
    script.type = "text/javascript";
    script.src = filePath;
    document.head.appendChild(script);
}

2.在HTML页面加载css文件的方法:

function loadCsstFile(filePath){
    var link = document.createElement("link");
    link.type = "text/css";
    link.rel = "stylesheet";
    link.href = "filePath";
    document.head.appendChild(link);
    //document.getElementsByTagName("head")[0].appendChild(link);
}