我想使用jquery自动填充一个没有引用jquery的网站的一些细节。使用IE devtool bar脚本控制台,我想加载jquery然后用它来编写一些代码。但我不知道如何加载jquery文件然后使用它。 有人可以帮助我吗?
答案 0 :(得分:0)
只需将其复制到地址栏或控制台中:
javascript:var s=document.createElement('script');s.setAttribute('src', 'http://jquery.com/src/jquery-latest.js');document.getElementsByTagName('body')[0].appendChild(s);void(s);