How to detect HTMLCollection/NodeList in JavaScript?

前端 未结 7 565
刺人心
刺人心 2020-12-05 02:55

I\'m not sure my current implementation is available all the time:

function isNodeList(nodes) {
    var result = Object.prototype.toString.call(nodes);
    /         


        
7条回答
提交回复
热议问题