我有以下代码:

var positions = [];
      $('.category-description TABLE TD').each(function() {
        var fulltxt = $(this).html().replace(/(<([^>]+)>)/ig,"");
        var lengt = fulltxt.length;
        var indx = $(this).index();
        positions.push[fulltxt];
        alert(positions);
      });


我不明白为什么它不起作用。表始终包含至少3个TD,fulltxt具有内容。警报(位置)返回空结果。

最佳答案

由于输入错误而无法使用

positions.push[fulltxt];
              ^       ^


应该

positions.push(fulltxt);
              ^       ^


看来您正在尝试重新发明$(this).text()

您也可以使用map()

var positions = $('.category-description TABLE TD')
  .map(function() {
    return $(this).text();
  })
  .get();

09-27 01:06