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

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

使用 JavaScript 將鏈接標(biāo)簽包裹在文本周圍

使用 JavaScript 將鏈接標(biāo)簽包裹在文本周圍

catspeake 2023-09-18 10:32:38
鏈接到 CodePen。我試圖將所有城市文本包裝在“位置”列下,并提供指向網(wǎng)站上特定位置頁面的鏈接。因此,劍橋?qū)⒈话b在前往劍橋頁面的鏈接標(biāo)簽中,蒂明斯將被包裝在前往蒂明斯頁面的鏈接標(biāo)簽中,等等。我一開始只使用兩個(gè)鏈接來嘗試使其正常工作。循環(huán)訪問位置列中的 td,如果該值等于特定文本,則添加指向它的鏈接。試圖讓它發(fā)揮作用。JS/////// Grab the Locations column ///////let col5 = document.querySelectorAll("td:nth-child(5)");// Cities Dataconst cities = [  {    id: 1,    city: 'Cambridge',    link: '/locations/cambridge'  },  {    id: 2,    city: 'Timmins',    link: '/locations/timmins'  }]/////// Link up all td's to location pages ///////// Loop over locations columnfor (let i = 0; i < col5.length; i++) {  // If it matches the specific city, wrap text around link tag linking to specific location  if (col5.innerHTML === cities[0].city) {    // Set Links Info    a.setAttribute("href", cities[0].link);    // Append    col5[i].appendChild(a);  } else if (col5.innerHTML === cities[1].city) {    // Set Links Info    a.setAttribute("href", cities[1].link);    // Append    col5[i].appendChild(a);  }}
查看完整描述

1 回答

?
慕妹3242003

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超6個(gè)贊

正如您可能想象的那樣,復(fù)制/粘貼/修改每個(gè)代碼的代碼cities無論如何都不理想。

您可以考慮使用數(shù)組方法,例如forEachfind...

const cities = [

? { id: 1, city: 'Cambridge', link: '/locations/cambridge' },

? { id: 2, city: 'Timmins', link: '/locations/timmins' }

]


// Go through each cell

let col5 = document.querySelectorAll("td:nth-child(5)");

col5.forEach(function(el) {

? // Find the city

? var city = cities.find(function(x) { return x.city == el.innerHTML; });

? if (city) {

? ? // Wrap in a link

? ? el.innerHTML = '<a href="' + city.link + '">' + el.innerHTML + '</a>';

? }

});

<table>

? <tr><td>1</td><td>2</td><td>3</td><td>4</td><td>Cambridge</td></tr>

? <tr><td>1</td><td>2</td><td>3</td><td>4</td><td>Timmins</td></tr>

</table>

(在任何人發(fā)表評(píng)論之前請(qǐng)注意...我使用function(x) {}而不是x =>因?yàn)槲胰匀恍枰獮?IE11 編寫代碼,它不支持箭頭函數(shù))



查看完整回答
反對(duì) 回復(fù) 2023-09-18
  • 1 回答
  • 0 關(guān)注
  • 108 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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