function addJs(jsPath) {
            var oHead = document.getElementsByTagName('HEAD').item(0);
            var oScript= document.createElement("script");
            oScript.type = "text/javascript";
            oScript.src=jsPath;
            oHead.appendChild(oScript);
        }

    function addCss(CssPath) {
        var oHead = document.getElementsByTagName('HEAD').item(0);
        var oLink = document.createElement("link");
        oLink.setAttribute("rel", "stylesheet");
        oLink.setAttribute("type", "text/css");
        oLink.setAttribute("href", CssPath);
        oHead.appendChild(oLink);
    }  

posted on 2013-03-16 09:25  叶城宇  阅读(281)  评论(0编辑  收藏  举报