NodeList & null
NodeList & null
querySelectorAll & querySelector
let arr = document.querySelectorAll(`[data-btn="common_handle_prev"]`);
// NodeList []
typeof(arr);
// "object"
let item = document.querySelector(`[data-btn="common_handle_prev"]`);
// null
typeof(item);
// "object"
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/10435842.html
未经授权禁止转载,违者必究!