如何制作安装jquery的书签?
这样当我在开发人员控制台中时,可以从我所访问的任何网站上调用jquery函数吗?
答案 0 :(得分:-2)
我有这样的书签,我确实在SO的某处的注释中看到了解决方案。
javascript:!function(){var jq = document.createElement('script'); jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); /*jQuery.noConflict();*/}();
您可以将其更新为最新的jquery
提到了类似的事情https://tutel.me/c/programming/questions/7474354/include+jquery+in+the+javascript+console