zoukankan      html  css  js  c++  java
  • matchesSelector()方法

    let result = element.matches(selectorString);
    • result 的值为 true 或 false.
    • selectorString 是个css选择器字符串.
    • if (!Element.prototype.matches) {
          Element.prototype.matches = 
              Element.prototype.matchesSelector || 
              Element.prototype.mozMatchesSelector ||
              Element.prototype.msMatchesSelector || 
              Element.prototype.oMatchesSelector || 
              Element.prototype.webkitMatchesSelector ||
              function(s) {
                  var matches = (this.document || this.ownerDocument).querySelectorAll(s),
                      i = matches.length;
                  while (--i >= 0 && matches.item(i) !== this) {}
                  return i > -1;            
              };
      }
  • 相关阅读:
    TypeScript 函数
    单链表 C++
    测试用例概念 原则
    TypeScript 类
    TypeScript 接口
    Cellection
    面向对象
    反射
    B树
    无权无向图
  • 原文地址:https://www.cnblogs.com/jokes/p/9525399.html
Copyright © 2011-2022 走看看