close
The Wayback Machine - https://web.archive.org/web/20220705040540/https://tr.javascript.info/task/append-to-list
Derse geri dön

Insert the HTML in the list

önem: 5

Buraya iki <li> arasına <li>2</li><li>3</li> eklemek için kodu yazın:

<ul id="ul">
  <li id="one">1</li>
  <li id="two">4</li>
</ul>

When we need to insert a piece of HTML somewhere, insertAdjacentHTML is the best fit.

The solution:

one.insertAdjacentHTML('afterend', '<li>2</li><li>3</li>');