30秒学会 JavaScript 片段 · 2018年6月27日

30秒学会 JavaScript 片段 – arrayToHtmlList

Converts the given array elements into <li> tags and appends them to the list of the given id.

Use Array.prototype.map(), document.querySelector(), and an anonymous inner closure to create a list of html tags.

代码片段

const arrayToHtmlList = (arr, listID) =>
  (el => (
    (el = document.querySelector('#' + listID)),
    (el.innerHTML += arr.map(item => `<li>${item}</li>`).join(''))
  ))();

使用样例

arrayToHtmlList(['item 1', 'item 2'], 'myListID');