IT源码网

怎样获取所有的script节点

developer 2021年03月09日 编程语言 436 0

1. 使用document.scripts;

document.scripts instanceof HTMLCollection; 
// true

 

2. 使用 document.getElementsByTagName();

document.getElementsByTagName("script");

 

3. 使用 document.querySelectorAll();

document.querySelectorAll("script");

 

评论关闭
IT源码网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!