2 回答

TA貢獻(xiàn)2011條經(jīng)驗(yàn) 獲得超2個(gè)贊
您需要?jiǎng)?chuàng)建元素并在循環(huán)中a設(shè)置其和文本。href
countries.forEach(country => {
let makeDiv = document.createElement("div");
makeDiv.id = country;
let h4 = document.createElement("h4");
h4.innerText = country;
makeDiv.appendChild(h4);
links.forEach((link, i) => {
let tag = document.createElement('a');
tag.href = link;
tag.innerText = `Link${i+1}`;
makeDiv.appendChild(tag);
});
countrySelect[0].appendChild(makeDiv);
});

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊
A。是的,創(chuàng)建一個(gè)循環(huán)。你也可以使用順便countries.forEach(()=> ...)
說(shuō)一句。 b. 不要忘記在循環(huán)繼續(xù)之前附加元素。 C。一個(gè)小建議——如果代碼越來(lái)越大,將代碼分成具有有意義名稱的小函數(shù)。
祝你好運(yùn)!
添加回答
舉報(bào)