You Don't Need jQuery - Query Selector

GitHub地址:https://github.com/oneuijs/You-Dont-Need-jQuery

常用的 class、id、属性 选择器都可以使用 document.querySelectordocument.querySelectorAll 替代。区别是

  • document.querySelector 返回第一个匹配的 Element

  • document.querySelectorAll 返回所有匹配的 Element 组成的 NodeList。它可以通过 [].slice.call() 把它转成 Array

  • 如果匹配不到任何 Element,jQuery 返回空数组 [],但 document.querySelector 返回 null,注意空指针异常。当找不到时,也可以使用 || 设置默认的值,如 document.querySelectorAll(selector) || []

注意:document.querySelectordocument.querySelectorAll 性能很。如果想提高性能,尽量使用 document.getElementByIddocument.getElementsByClassNamedocument.getElementsByTagName

  • 1.0 Query by selector

    1
    2
    3
    4
    5
    // jQuery
    $('selector');
    // Native
    document.querySelectorAll('selector');
  • 1.1 Query by class

    1
    2
    3
    4
    5
    6
    7
    8
    // jQuery
    $('.css');
    // Native
    document.querySelectorAll('.css');
    // or
    document.getElementsByClassName('css');
  • 1.2 Query by id

    1
    2
    3
    4
    5
    6
    7
    8
    // jQuery
    $('#id');
    // Native
    document.querySelector('#id');
    // or
    document.getElementById('id');
  • 1.3 Query by attribute

    1
    2
    3
    4
    5
    // jQuery
    $('a[target=_blank]');
    // Native
    document.querySelectorAll('a[target=_blank]');
  • 1.4 Find sth.

    • Find nodes

      1
      2
      3
      4
      5
      // jQuery
      $el.find('li');
      // Native
      el.querySelectorAll('li');
    • Find body

      1
      2
      3
      4
      5
      // jQuery
      $('body');
      // Native
      document.body;
    • Find Attribute

      1
      2
      3
      4
      5
      // jQuery
      $el.attr('foo');
      // Native
      e.getAttribute('foo');
    • Find data attribute

      1
      2
      3
      4
      5
      6
      7
      8
      // jQuery
      $el.data('foo');
      // Native
      // using getAttribute
      el.getAttribute('data-foo');
      // you can also use `dataset` if only need to support IE 11+
      el.dataset['foo'];
  • 1.5 Sibling/Previous/Next Elements

    • Sibling elements

      1
      2
      3
      4
      5
      6
      7
      // jQuery
      $el.siblings();
      // Native
      [].filter.call(el.parentNode.children, function(child) {
      return child !== el;
      });
    • Previous elements

      1
      2
      3
      4
      5
      // jQuery
      $el.prev();
      // Native
      el.previousElementSibling;
    • Next elements

      1
      2
      3
      // next
      $el.next();
      el.nextElementSibling;
  • 1.6 Closest

    Closest 获得匹配选择器的第一个祖先元素,从当前元素开始沿 DOM 树向上。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // jQuery
    $el.closest(queryString);
    // Native
    function closest(el, selector) {
    const matchesSelector = el.matches || el.webkitMatchesSelector || el.mozMatchesSelector || el.msMatchesSelector;
    while (el) {
    if (matchesSelector.call(el, selector)) {
    return el;
    } else {
    el = el.parentElement;
    }
    }
    return null;
    }
  • 1.7 Parents Until

    获取当前每一个匹配元素集的祖先,不包括匹配元素的本身。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    // jQuery
    $el.parentsUntil(selector, filter);
    // Native
    function parentsUntil(el, selector, filter) {
    const result = [];
    const matchesSelector = el.matches || el.webkitMatchesSelector || el.mozMatchesSelector || el.msMatchesSelector;
    // match start from parent
    el = el.parentElement;
    while (el && !matchesSelector.call(el, selector)) {
    if (!filter) {
    result.push(el);
    } else {
    if (matchesSelector.call(el, filter)) {
    result.push(el);
    }
    }
    el = el.parentElement;
    }
    return result;
    }
  • 1.8 Form

    • Input/Textarea

      1
      2
      3
      4
      5
      // jQuery
      $('#my-input').val();
      // Native
      document.querySelector('#my-input').value;
    • Get index of e.currentTarget between .radio

      1
      2
      3
      4
      5
      // jQuery
      $(e.currentTarget).index('.radio');
      // Native
      [].indexOf.call(document.querySelectorAll('.radio'), e.currentTarget);
  • 1.9 Iframe Contents

    jQuery 对象的 iframe contents() 返回的是 iframe 内的 document

    • Iframe contents

      1
      2
      3
      4
      5
      // jQuery
      $iframe.contents();
      // Native
      iframe.contentDocument;
    • Iframe Query

      1
      2
      3
      4
      5
      // jQuery
      $iframe.contents().find('.css');
      // Native
      iframe.contentDocument.querySelectorAll('.css');

本文作者:余震(Freak)
本文出处:Rockjins Blog
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN许可协议。转载请注明出处!

坚持,您的支持将鼓励我继续爬下去!