Giter VIP home page Giter VIP logo

Comments (15)

Jiasm avatar Jiasm commented on July 21, 2024 15
Array.from(new Set(Array.from(document.querySelectorAll('*')).map(({tagName})=> tagName.toLowerCase())))

from frontend-interview.

giscafer avatar giscafer commented on July 21, 2024 4

@henryzp 同一个回答建议不要分为两层楼啊。可以编辑自己原来的回答。

document.all能取得当前页面所有的element,判断nodeType===1就是element了,取nodeName就是标签名称,遍历做个类别统计就可以
听说还有其他方式,我首先想到的是这个方式而已。

from frontend-interview.

cwsjoker avatar cwsjoker commented on July 21, 2024 2

[...new Set([...document.getElementsByTagName('*')].map((value) => {return value.nodeName;}))]
思路是先获取全部标签将类数组转化为数组在遍历每个元素取出标签名返回一个新数组,在利用es6的Set结构去重

from frontend-interview.

leegedan avatar leegedan commented on July 21, 2024 1

document.getElementsByTagName('*') 咋没人说这个

from frontend-interview.

henryzp avatar henryzp commented on July 21, 2024

遍历整个DOM树,判断它的nodeType === 11吧?然后取它的nodeName还是tagName,就可以了吧?

from frontend-interview.

henryzp avatar henryzp commented on July 21, 2024

nodeType到底是不是11,我不是太确定。。应该是11,11是表示element节点

from frontend-interview.

giscafer avatar giscafer commented on July 21, 2024

@leegedan 不错。等价于document.all。在一些禁用document.all的页面下可以使用document.getElementsByTagName('*')获取了。类似jquery的选择器$("*")

from frontend-interview.

guol-talend avatar guol-talend commented on July 21, 2024

简单写一下,可能还需要修改:

        let tags = [],
            labelType = {};
        tags.push.apply(tags, document.getElementsByTagName("*"));
        tags.forEach(function(tag) {
            if (tag.nodeType == 1) {
                if (labelType[tag.nodeName] == undefined) {
                    labelType[tag.nodeName] = 1;
                } else {
                    labelType[tag.nodeName] += 1;
                }
            }
        })
        console.log(labelType);

from frontend-interview.

giscafer avatar giscafer commented on July 21, 2024

@guol-talend 嗯,可以的。看到一个语句顺便说一下☟
不过tags.push.apply(tags, document.getElementsByTagName("*"));这种方式不建议使用啊。
concat好些。看个大数组:

var a=[]; var b=new Array(125624);
a.push.apply(a,b)

VM245:2 Uncaught RangeError: Maximum call stack size exceeded

from frontend-interview.

guol-talend avatar guol-talend commented on July 21, 2024

@giscafer 谢谢提醒, 发现的一个stackoverflow 贴 ^_^
http://stackoverflow.com/questions/6095530/maximum-call-stack-size-exceeded-error

from frontend-interview.

Joker-Qu avatar Joker-Qu commented on July 21, 2024

function getAllTypes() {
var elems = document.querySelectorAll('*')
var types = []
for(var i =0;i<elems.length;i++){
var ele = elems[i]
if (ele.nodeType === 1 && types.indexOf(ele.nodeName.toLowerCase())<0){
types.push(ele.nodeName.toLowerCase())
}
}
return types
}

from frontend-interview.

OwenShi avatar OwenShi commented on July 21, 2024

[...new Set([...document.all].map(function(ele){if(ele.nodeType === 1){return ele.nodeName}}))];
哎呀写了才发现楼上已经有类似的了。。

from frontend-interview.

40years avatar 40years commented on July 21, 2024
Array.from(document.getElementsByTagName('*')).map((each)=>each.tagName).filter((each,index,array)=>array.indexOf(each)==index)

from frontend-interview.

roadwild avatar roadwild commented on July 21, 2024

function getTagsOfNode(node, result = []) {
if(result.indexOf(node.tagName) < 0) {
result.push(node.tagName)
}
for(var i = 0, len = node.children.length; i < len; i++) {
getTagsOfNode(node.children[i], result)
}
return result
}
可以通过这个函数拿到节点及其后代节点的标签名

from frontend-interview.

giscafer avatar giscafer commented on July 21, 2024

后边来的同学,不用继续回复了,自己写写和看看楼上各位答案就够了。最佳答案在@Jiasm

from frontend-interview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.