Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
139 views
in Technique[技术] by (71.8m points)

javascript - Duplicate tags without making more variables

So in short I want to add a simple javascript code that add unorder list and inside of it add 4 lists with different text. I can just do this the simple way but I want to know if I can duplicate a tag <li> while changing the text inside without creating more variables.

const ul = document.createElement('ul')
const li = document.createElement('li')
const a = ['one','two',"three","four"]

const group = document.body.insertAdjacentElement('afterbegin' , ul)
ul.appendChild(li)
li.textContent = a[0]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Iterate over the a array and create element inside that instead.

If you want to try to avoid creating variables when not needed, you can use appendChild (which returns the appended element):

const ul = document.body.appendChild(document.createElement('ul'));
for (const item of ['one','two',"three","four"]) {
  ul.appendChild(document.createElement('li')).textContent = item;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...