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

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

Javascript 優(yōu)雅地在 URL 的其余部分前面添加一個(gè) slug?

Javascript 優(yōu)雅地在 URL 的其余部分前面添加一個(gè) slug?

波斯汪 2023-09-18 17:53:16
任何人都可以提供一個(gè)優(yōu)雅的 Javascript 片段來更改像這樣的 URL<a href="joebiden" title="Twitter" aria-label="Twitter">Joe</a><a href="berniesanders" title="Twitter" aria-label="Twitter">Bernie</a>對(duì)于類似這樣的 URL:<a href="https://twitter.com/joebiden" title="Twitter" aria-label="Twitter">Joe</a><a href="https://twitter.com/berniesanders" title="Twitter" aria-label="Twitter">Bernie</a>這樣 twitter URL 就被添加到前面了嗎?
查看完整描述

1 回答

?
LEATH

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

此代碼段查找值為“Twitter”的<a>元素,并將“ https://twitter.com/ ”添加到現(xiàn)有值之前。aria-labelhref

for (let a of Object.values(document.getElementsByTagName('a'))) {

  if (a.getAttribute('aria-label') === 'Twitter') {

    a.setAttribute('href', 'https://twitter.com/' + a.getAttribute('href'))

  }

}


// Show results

for (let a of Object.values(document.getElementsByTagName('a'))) {

    console.log(a.getAttribute('href'));

}

<a href="joebiden" title="Twitter" aria-label="Twitter">Joe</a>

<a href="berniesanders" title="Twitter" aria-label="Twitter">Bernie</a>





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

添加回答

舉報(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)