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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

替換標(biāo)題中的文本 - 未捕獲的類型錯誤:str.substring 不是函數(shù)

替換標(biāo)題中的文本 - 未捕獲的類型錯誤:str.substring 不是函數(shù)

胡說叔叔 2022-12-09 19:45:39
我正在嘗試通過使用切片、替換等來修改第 3 方跨度(換句話說,我無法訪問那部分代碼)。但是,我嘗試過的所有方法都無法正常工作給我?guī)硗瑯拥腻e誤:Uncaught TypeError: str.substring is not a function    at cutId ((index):1004)    at (index):1006我試圖修改的代碼如下:<div class="vpe_table_responsive">    <table class="vpe_table" id="vpe_table">        <thead>            <tr>                <th>Title</th>                <th>Price</th>                <th>Quantity</th>            </tr>        </thead>        <tbody class="pagination_row">            <tr class="vpe_row variant-1843" data-tobeshown="no">                 <td data-title="Title" id="vpe-title-td-1843" class="vpe-img-td">                      <span>Talla 4 (#1843)</span>                 </td>在網(wǎng)頁中,在標(biāo)題下,我有大小 (Talla 7) 后跟一個 id 都在同一個 span 標(biāo)簽內(nèi)。我的目標(biāo)是從標(biāo)題欄中刪除 (#1843)。這是我嘗試過的:<script>   function cutId() {       let str = document.querySelectorAll(".vpe-img-td");     str = str.substring(-7);     }   cutId();</script>
查看完整描述

1 回答

?
互換的青春

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

您可以使用slice方法和querySelectorAll>來做到這一點span。替換標(biāo)題的文本。這將是Title 4

首先,我們將獲得您的跨度的實際textContent,然后我們使用 0,7 中的切片,它將 Just title excluding (#1843)。

最后,我們將textContent再次使用 span 中設(shè)置新標(biāo)題。

運(yùn)行下面的代碼片段以查看它是否正常工作。

function cutId() {

  //get all tds

  let allTds = document.querySelectorAll(".vpe-img-td span");


  //Foreach Loop

  allTds.forEach(function(data) {


    //Get the text 

    let spanText = data.textContent


    //Slice the title

    let slice = spanText.slice(0, 7)


    //Set title again

    data.textContent = spanText.replace(spanText, slice)

  })


}

cutId();

<div class="vpe_table_responsive">

  <table class="vpe_table" id="vpe_table">

    <thead>

      <tr>

        <th>Title</th>

        <th>Title</th>

        <th>Title</th>

        <th>Title</th>

      </tr>

    </thead>

    <tbody class="pagination_row">

      <tr class="vpe_row variant-1843" data-tobeshown="no">

        <td data-title="Title" id="vpe-title-td-1843" class="vpe-img-td">

          <span>Talla 1 (#1843)</span>

        </td>

        <td data-title="Title" id="vpe-title-td-1843" class="vpe-img-td">

          <span>Talla 2 (#8888)</span>

        </td>

        <td data-title="Title" id="vpe-title-td-1843" class="vpe-img-td">

          <span>Talla 3 (#8216)</span>

        </td>

        <td data-title="Title" id="vpe-title-td-1843" class="vpe-img-td">

          <span>Talla 4 (#1588)</span>

        </td>

      </tr>

    </tbody>

  </table>


</div>


查看完整回答
反對 回復(fù) 2022-12-09
  • 1 回答
  • 0 關(guān)注
  • 203 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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