美文网首页
浏览器控制台添加js库

浏览器控制台添加js库

作者: 大诗兄_zl | 来源:发表于2018-01-02 14:58 被阅读5次

    var importJs=document.createElement('script')  

    //在页面新建一个script标签 


    importJs.setAttribute("type","text/javascript")  

    //给script标签增加type属性 


    importJs.setAttribute("src", 'http://ajax.microsoft.com/ajax/jquery/jquery-1.4.min.js') 

    importJs.setAttribute("src", "http://d3js.org/d3.v3.min.js")

    //给script标签增加src属性, url地址为cdn公共库里的


    document.getElementsByTagName("head")[0].appendChild(importJs)

    //把importJs标签添加在页面

    for ( i in aa){

        console.log(aa[0])

    }

    相关文章

      网友评论

          本文标题:浏览器控制台添加js库

          本文链接:https://www.haomeiwen.com/subject/hhsdgxtx.html