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

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

通過(guò) JavaScript 更改多個(gè) HTML 表格單元格的最佳方法

通過(guò) JavaScript 更改多個(gè) HTML 表格單元格的最佳方法

躍然一笑 2023-08-18 16:51:54
在 HTML 表中,我必須更改幾個(gè)列標(biāo)題,例如:<th class="myclass">Headline_01</th>應(yīng)該變成<th class="myclass">Nice Headline 01</th>。作為 javascript 的初學(xué)者,我可以使用以下代碼實(shí)現(xiàn)此目的:window.onload = function() {    'use strict';    document.body.innerHTML = document.body.innerHTML.replace("Headline_01","Nice Headline 01");    document.body.innerHTML = document.body.innerHTML.replace("Headline_02","Nice Headline 02");    document.body.innerHTML = document.body.innerHTML.replace("Headline_03","Nice Headline 03");}這就是我所擁有的:<table>  <thead>    <tr>      <th class="myClass1">Current unique Headline for myClass1</th>    </tr>    <tr>      <th class="myClass2">Current unique Headline for myClass2</th>    </tr>   ....  </thead>這就是我需要的:<table>  <thead>    <tr>      <th class="myClass1">New unique Headline for myClass1</th>    </tr>    <tr>      <th class="myClass2">New unique Headline for myClass2</th>    </tr>    .....  </thead>我必須更改 20 多個(gè)項(xiàng)目,并且總是重復(fù)相同的代碼對(duì)我來(lái)說(shuō)似乎是錯(cuò)誤的,我認(rèn)為這也會(huì)導(dǎo)致性能不佳。我應(yīng)該如何改進(jìn)我的代碼?感謝您的提示!
查看完整描述

1 回答

?
函數(shù)式編程

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

班級(jí)


const changes = { 

  "myClass1": "New unique Headline for myClass1", 

  "myClass2": "New unique Headline for myClass2" 

};


Object.keys(changes)

  .forEach(key => document.querySelectorAll("table th."+key)

    .forEach(th => th.textContent = changes[key]));

<table>

  <thead>

    <tr>

      <th class="myClass1">Current unique Headline for myClass1</th>

    </tr>

    <tr>

      <th class="myClass2">Current unique Headline for myClass2</th>

    </tr>

  </thead>

內(nèi)容:


const changes = {

  "Current unique Headline for myClass1": "New unique Headline for myClass1",

  "Current unique Headline for myClass3": "New unique Headline for myClass3"

};


[...document.querySelectorAll("th")]

.forEach(th => {

  const text = changes[th.textContent];

  if (text) th.textContent = text;

});

<table>

  <thead>

    <tr>

      <th class="myClass1">Current unique Headline for myClass1</th>

    </tr>

    <tr>

      <th class="myClass2">Current unique Headline for myClass2</th>

    </tr>

    <tr>

      <th class="myClass3">Current unique Headline for myClass3</th>

    </tr>

  </thead>


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

添加回答

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