使用jquery从第一列表中获取文本

时间:2014-08-25 19:05:05

标签: jquery html

我有一个包含5列和大量行的表。对于每一行,我想查看第一列中的文本。 (这是html)我发现了一些jquery的例子,但无法使用我的代码。有人可以帮我解决问题吗? jquery代码在第45行的get_date(f)函数中

我无法在此文本框中正确使用该代码,因此我在此处输入了一个在线链接:http://wietskekoelma.com/test/highteabestellijst.html

谢谢!

1 个答案:

答案 0 :(得分:1)

也许这就是你所需要的。 的 DEMO

$(".mainTable tr").each(function () {
    lst += $(this).children().eq(0).text() + "  ";
});

<强>参见

  1. .children()
  2. .eq()
  3. .each()
  4. <强>更新

    order_data += $(".mainTable tr").eq(i).children().eq(0).text() + " = "+f.line[i].value +" Stuks\n";