获取页面所有元素标签
- 获取所有元素标签的类数组(包含文本节点等)
const allTag = document.getElementsByTagName('*')
- 转换成数组
const arrTag = Array.prototype.slice.call(allTag)
const allTag = document.getElementsByTagName('*')
const arrTag = Array.prototype.slice.call(allTag)
本文标题:js获取页面所有元素标签
本文链接:https://www.haomeiwen.com/subject/kpevjctx.html
网友评论