乐趣区

关于javascript:封装JS通用的类型判断

let type = function (data) {
        let toString = Object.prototype.toString;
        let dataType =
          data instanceof Element
            ? 'element' // 为了对立 DOM 节点类型输入
            : toString
                .call(data)
                .replace(/\[object\s(.+)\]/, '$1')
                .toLowerCase();
        return dataType;
      };
退出移动版