1. 使用document.scripts;
document.scripts instanceof HTMLCollection; // true
2. 使用 document.getElementsByTagName();
document.getElementsByTagName("script");
3. 使用 document.querySelectorAll();
document.querySelectorAll("script");
1. 使用document.scripts;
document.scripts instanceof HTMLCollection; // true
2. 使用 document.getElementsByTagName();
document.getElementsByTagName("script");
3. 使用 document.querySelectorAll();
document.querySelectorAll("script");