我有关于产品和价格的表格,我正在使用 MVC 模型获取数据,现在我正在尝试在我的图形图表上使用这些数据,但我无法从我的表格中获取数据。我怎样才能得到?
这是表格的 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);
}
);
});
执行代码后的结果是;0:html细胞... 1:html细胞... . .