📜  从控制台添加 jquery - Javascript 代码示例

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

代码示例1
const jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);

//Jquery Code here
$(document).fadeIn()