-
2016. 4. 1. 12:11 개발자료/ECMAScript
http://stackoverflow.com/questions/3199588/fastest-way-to-convert-javascript-nodelist-to-array
NodeList 는 다음과 같습니다
Element.children
Element.childNodes
document.querySelectorAll
document.getElementsByTagName
document.getElementsByName
그런데 NodeList 는 Array 타입이 아니므로 편집이 제한적입니다
그렇기 때문에 아래 방법으로 변환해서 사용합니다
Array.prototype.slice.call(NodeList)
[].slice.call(NodeList)
function arr(a){
return Array.prototype.clice.call(a);
}
Posted by Nightly Luna