arr = document.getElementsByClassName(type2); // suppose type2 is not available in the dom - class = "some_class"
// check for empty
此片段返回
[对象 HTMLCollection]
它的长度为 0。
这是在使用 getElementsByClassName 时检查类不存在的最佳方法,即只检查长度为 0 吗?
arr = document.getElementsByClassName(type2); // suppose type2 is not available in the dom - class = "some_class"
// check for empty
此片段返回
[对象 HTMLCollection]
它的长度为 0。
这是在使用 getElementsByClassName 时检查类不存在的最佳方法,即只检查长度为 0 吗?