“JS Queryselector Names” Ответ

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

Ответы похожие на “JS Queryselector Names”

Вопросы похожие на “JS Queryselector Names”

Больше похожих ответов на “JS Queryselector Names” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования