怎样通过JS插入JQuery

By admin, 30 六月, 2015

在分析第三方网页的时候,我们可能需要使用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();

 

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"