有没有人有一个片段可以将jquery加载到firebug的任何页面上?我经常遇到我更喜欢使用熟悉的jq语法检查的网站.
例如,假设我想从页面中提取价格列表 - 最好是启动firebug,从谷歌CDN安装jquery,然后输入$('li.prices').每个(...).
刚刚看到这个bookmarklet用于在另一个线程中注入jQuery
另一种方法是将其粘贴到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);