我有關(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... . . .
使用jquery每種方法并從表MVC模型中獲取數(shù)據(jù)
炎炎設(shè)計(jì)
2021-12-25 18:47:13