2013-07-18 61 views
0

我已經閱讀了關於每個函數的很多文章(函數(){....以獲得值html頁面childs。但我不能這樣做,我希望你能幫助我,我的一些糟糕的實驗不工作。 。一個一個按鈕,是不是在外面的行同時點擊一個按鈕,行值必須回到我。我需要TD的跨度值...如何通過單擊外部按鈕來獲取所有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()); 

通過點擊點擊網頁按鈕(外部表,而不是內部)的,表中的TD,2S跨度值:

enter image description here

+0

你的html代碼是什麼? –

回答

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