var new_element = document.createElement("script")//创建新的script节点new_element.setAttribute("type", "text/javascript")new_element.setAttribute("src", "../js/jquery.js")document.body.appendChild(new_element)//添加到body节点的末尾
上例中伏穗棚是在缺则body的最末尾添加的,当然同样可以在head中添加引用该js的标签:document.head.appendChild(new_element)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)