码迷,mamicode.com
首页 > 其他好文 > 详细

动态脚本(兼容所有浏览器)

时间:2018-07-08 15:31:39      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:UNC   cti   str   pts   ext   type   end   var   string   

function loadScriptString(code){

  var script = document.createElement("script");

  script.type = "text/javascript";

  try{

    script.appendChild(document.createTextNode(code));

  } catch(ex){

    script.text = code;

  }

  document.body.appendChild(script);

}

调用示例

loadScriptString("function sayhi(){alert(‘hi‘);}")

动态脚本(兼容所有浏览器)

标签:UNC   cti   str   pts   ext   type   end   var   string   

原文地址:https://www.cnblogs.com/msg001/p/9280040.html

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