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

向网页中写入js和css

时间:2016-07-15 17:04:40      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

向网页中写入js和css

本函数由前辈所写

loadFile: function (url, ftype) {
            var fileref;
            if (ftype == "js") {
                fileref = document.createElement(script);
                fileref.setAttribute("type", "text/javascript");
                fileref.setAttribute("src", url);
            } else if (ftype == "css") {
                fileref = document.createElement(link);
                fileref.setAttribute("rel", "stylesheet");
                fileref.setAttribute("type", "text/css");
                fileref.setAttribute("href", url);
            }

            if (typeof fileref != "undefined") {
                document.getElementsByTagName("head")[0].appendChild(fileref);
            }
        }

 

向网页中写入js和css

标签:

原文地址:http://www.cnblogs.com/zzcit/p/5673977.html

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