📜  网站在js中实现jquery - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:14.990000             🧑  作者: Mango

代码示例1
// Paste this into your JS Console and jQuery sould be available! :)
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.6.0.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);