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

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

使用jquery每種方法并從表MVC模型中獲取數(shù)據(jù)

使用jquery每種方法并從表MVC模型中獲取數(shù)據(jù)

C#
炎炎設(shè)計(jì) 2021-12-25 18:47:13
我有關(guān)于產(chǎn)品和價(jià)格的表格,我正在使用 MVC 模型獲取數(shù)據(jù),現(xiàn)在我正在嘗試在我的圖形圖表上使用這些數(shù)據(jù),但我無法從我的表格中獲取數(shù)據(jù)。我怎樣才能得到?這是表格的 HTML 代碼   <tbody id="table2">        @foreach(var oge in Model)        {            <tr onclick="method(this)" data-toggle="modal" data-target="#mymodal">                <td id="product_name">@Html.Raw(oge.product_name)</td>                <td id="product_price">@Html.Raw(oge.product_price)</td>                          </tr>        }    </tbody>這是使用每種方法的 jquery 代碼,注意:僅使用此表,頁面上沒有其他元素。 $("#button").click(function() {                  $("td").each(function (index,value) {            alert(index + ": " + value);        }        );    });執(zhí)行代碼后的結(jié)果是;0:htmlCell... 1:htmlcell... . . .
查看完整描述

1 回答

?
蕭十郎

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

如果您想使用值,請使用 value.innerText 訪問內(nèi)容,但我同意上面建議使用 $(this).text() 的評(píng)論


   $("#table2 td").each(function (index,value) {

        console.log(index + ": " + value.innerText);

        console.log(index + ": " + $(this).text());

    });


查看完整回答
反對(duì) 回復(fù) 2021-12-25
  • 1 回答
  • 0 關(guān)注
  • 175 瀏覽

添加回答

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