Skip to content

Instantly share code, notes, and snippets.

@bydmm
Created October 31, 2016 02:31
Show Gist options
  • Save bydmm/1fcf8bea78a001fe885bb6d1c1615f0e to your computer and use it in GitHub Desktop.
Save bydmm/1fcf8bea78a001fe885bb6d1c1615f0e to your computer and use it in GitHub Desktop.
在console中加载jQuery
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type (or see below for non wait option)
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment