第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何使用 JavaScript 生成多個(gè) a 標(biāo)簽?

如何使用 JavaScript 生成多個(gè) a 標(biāo)簽?

aluckdog 2023-04-20 10:48:36
我想創(chuàng)建多個(gè)a標(biāo)簽來(lái)填充一個(gè)div. 用 HTML 編寫此代碼會(huì)占用很多行,而使用 JavaScript 腳本會(huì)使事情變得更容易。不幸的是,我仍在學(xué)習(xí)它,并且正在尋求幫助。下面是我想要使用 JavaScript 生成的 HTML 代碼,在里面div id="countries"<div class="countries">  <div id="Denmark">    <h4>Denmark</h4><!-- number of links is variable to each country -->    <a href="https://www.example.com">Link1</a>    <a href="https://www.example2.com">Link2</a>  </div></div>一些JS代碼let countrySelect = document.getElementsByClassName('countries');let links = ["https://www.example1.com", "https://www.example2.com", "https://www.example3.com", "https://www.example4.com", "https://www.example5.com", "https://www.example6.com", "https://www.example7.com", "https://www.example7.com"];// make an array of countrieslet countries = ["Denmark", "Spain", "Italy", "Slovenia", "Malta", "Hungary", "Austria", "Czech Republic"];// make a divlet makeDiv = document.createElement("div");// add an ID to div just createdmakeDiv.setAttribute('id', 'country');// make an A taglet tag = document.createElement("a");tag.setAttribute('href', links[1]); // multiple links needed...integrate in a loop?// make a loop to create multiple country divsfor (let index = 0; index < countries.length; index++) {  // insert all the elements in the loop}
查看完整描述

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);

});


查看完整回答
反對(duì) 回復(fù) 2023-04-20
?
智慧大石

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)!


查看完整回答
反對(duì) 回復(fù) 2023-04-20
  • 2 回答
  • 0 關(guān)注
  • 261 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)