码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-01-20 19:46:19      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:document   func   end   cti   path   function   htm   adc   加载   

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);
}

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

标签:document   func   end   cti   path   function   htm   adc   加载   

原文地址:https://www.cnblogs.com/dcncy/p/8321645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!