当前位置:  开发笔记 > 编程语言 > 正文

使用Firebug将JQuery加载到任何页面中

如何解决《使用Firebug将JQuery加载到任何页面中》经验,为你挑选了2个好方法。

有没有人有一个片段可以将jquery加载到firebug的任何页面上?我经常遇到我更喜欢使用熟悉的jq语法检查的网站.

例如,假设我想从页面中提取价格列表 - 最好是启动firebug,从谷歌CDN安装jquery,然后输入$('li.prices').每个(...).



1> EMiller..:

刚刚看到这个bookmarklet用于在另一个线程中注入jQuery



2> Humppakäräjä..:

另一种方法是将其粘贴到Firebug控制台并点击执行按钮.

var fileref = document.createElement("script");
fileref.setAttribute("type", "text/javascript");
fileref.setAttribute("src", "http://code.jquery.com/jquery-latest.min.js");
document.head.appendChild(fileref);

更新:使用以下代码片段将jQuery注入使用HTTPS的网站:

var fileref = document.createElement("script");
fileref.setAttribute("type", "text/javascript");
fileref.setAttribute("src", "https://code.jquery.com/jquery-latest.min.js");
document.head.appendChild(fileref);

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有