Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created October 14, 2013 15:15
Show Gist options
  • Save libo1106/6977263 to your computer and use it in GitHub Desktop.
Save libo1106/6977263 to your computer and use it in GitHub Desktop.
loadScript 给页面添加外部script
function loadScript (doc, type, src, callback) {
var script = doc.createElement('script');
script.type = type ? type : 'application/javascript';
script.onload = callback;
script.src = src;
doc.head.appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment