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

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

如何在最近的標(biāo)簽中找到類?

如何在最近的標(biāo)簽中找到類?

躍然一笑 2023-05-25 16:51:00
如何使用 Java Script 在最接近的標(biāo)簽中找到類?需要在 . 例子如下:       <tr>            <td class="customer">                @Html.DisplayFor(modelItem => item.Cust)            </td>            <td>                <select id="decisionList">                    <option value="0" selected></option>                    <option value="1">None</option>                </select>            </td>       </tr>我在 JS 中試過這個:document.querySelectorAll("#decisionList").forEach(elem => elem.addEventListener("change", function () {    var selectedOptionIndex = this.options[this.selectedIndex].index;  //this works perfectly    var invoiceDateText = this.closest('tr').find('customer').textContent; //this doesn't work// ...some other code
查看完整描述

2 回答

?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個贊

我想這就是你要找的:


document.querySelector("#decisionList").addEventListener('change', function() {

  const selectedOptionIndex = this.options[this.selectedIndex].index;

  const invoiceDateText = this.closest('tr').querySelector('.customer').textContent;

});


查看完整回答
反對 回復(fù) 2023-05-25
?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個贊

closest方法使用querySelector來查找最近的。

    var invoiceDateText = this.closest('.customer').textContent;

然后,這應(yīng)該在文檔根目錄中搜索DOM與客戶類最接近的元素。

如果您想搜索最近的tr帶有customer類的單元格,而不是將其修改為。

    var invoiceDateText = this.closest('tr>.customer').textContent;


查看完整回答
反對 回復(fù) 2023-05-25
  • 2 回答
  • 0 關(guān)注
  • 130 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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