使用jquery每种方法并从表MVC模型中获取数据

我有关于产品和价格的表格,我正在使用 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:htmlCell... 1:htmlcell... . . .


炎炎设计
浏览 162回答 1
1回答

萧十郎

如果您想使用值,请使用 value.innerText 访问内容,但我同意上面建议使用 $(this).text() 的评论&nbsp; &nbsp;$("#table2 td").each(function (index,value) {&nbsp; &nbsp; &nbsp; &nbsp; console.log(index + ": " + value.innerText);&nbsp; &nbsp; &nbsp; &nbsp; console.log(index + ": " + $(this).text());&nbsp; &nbsp; });
打开App,查看更多内容
随时随地看视频慕课网APP