如何通过单击外部按钮获得所有td的跨度?

时间:2013-07-18 22:02:19

标签: javascript jquery html html5 css3

我已经阅读了很多关于每个人的文章(function(){....以获得价值html tablee孩子。但我不能那样做。我希望你能帮助我。我的一些不好的实验不起作用。是一个不在行的按钮外面。点击一个按钮,行值必须返回我。我需要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范围值:

enter image description here

1 个答案:

答案 0 :(得分:1)

 $("#listsends").find('.label label-warning').each(function () {
     var textval = $(this).text(); // as this is the scope of the element
     alert(textval);
 });