“JS QuerySelector Names” Kod odpowiedzi

JS QuerySelector Names

// This selects the first element with that name
document.querySelector('[name="your-selector-name-here"]');
Uber-Dan

Document.QuerySelector

<div id="foo\bar"></div>
<div id="foo:bar"></div>

<script>
  console.log('#foo\bar');               // "#fooar" (\b is the backspace control character)
  document.querySelector('#foo\bar');    // Does not match anything

  console.log('#foo\\bar');              // "#foo\bar"
  console.log('#foo\\\\bar');            // "#foo\\bar"
  document.querySelector('#foo\\\\bar'); // Match the first div

  document.querySelector('#foo:bar');    // Does not match anything
  document.querySelector('#foo\\:bar');  // Match the second div
</script>
Ugliest Unicorn

Odpowiedzi podobne do “JS QuerySelector Names”

Pytania podobne do “JS QuerySelector Names”

Więcej pokrewnych odpowiedzi na “JS QuerySelector Names” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu