Skip to content

Instantly share code, notes, and snippets.

@ziluo
Created February 7, 2015 04:14
Show Gist options
  • Save ziluo/44dba0c0a0989d3d33eb to your computer and use it in GitHub Desktop.
Save ziluo/44dba0c0a0989d3d33eb to your computer and use it in GitHub Desktop.
全局执行
var globalEval = function(text) {
var s = doc.createElement('script');
s.appendChild(doc.createTextNode(text))
doc.querySelector('head').appendChild(s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment