在分析第三方网页的时候,我们可能需要使用JQuery来抽取一些内容,如果网页本身没有加载jQuery,我们可以在开发者控制台通过运行以下JS加载:
var jq = document.createElement('script');
jq.src = "
http://libs.baidu.com/jquery/1.10.2/jquery.min.js"; //"https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq); // ... give time for script to load, then type.
jQuery.noConflict();
评论