在浏览器console中使用jQuery

万德海
2023-12-01
var jquery = document.createElement('script');  
jquery.src = 'https://code.jquery.com/jquery-3.3.1.min.js';
document.getElementsByTagName('head')[0].appendChild(jquery);
如果网页源代码中没有引入jquery是不能在console中使用jquery的,这是在console中执行这段代码就可以使用jquery了

 类似资料: