-1

我已经阅读了很多关于 each(function(){ .... 以获取值 html tablee childs 的文章。但我不能那样做。我希望你能帮助我。我的一些不好的实验不起作用。有一个外部一个不在行中的按钮。单击按钮时,行值必须返回我。我需要 td 的跨度值...

我不工作的样本:不工作:

       var id = $("#listsends").closest("tr").find(".label label-warning").text();

不工作:

     alert(id);

     $("#listsends").find('.label label-warning').each(function () {
         var textval = $('.label label-warning').text(); // this will be the text of each <td>
         alert(textval);
     });

         var t = $('.label label-warning');
         for (var i = 0; i < t.length; i++)
             alert(t[i].text());

通过单击 web 按钮(表外,而不是内),表的 td ^s 跨度值:

在此处输入图像描述

4

1 回答 1

1
 $("#listsends").find('.label label-warning').each(function () {
     var textval = $(this).text(); // as this is the scope of the element
     alert(textval);
 });
于 2013-07-18T22:14:01.443 回答