程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> js-新手求助關於根據選中的radio而獲取同一行裡面的所有td的值

js-新手求助關於根據選中的radio而獲取同一行裡面的所有td的值

編輯:編程綜合問答
新手求助關於根據選中的radio而獲取同一行裡面的所有td的值

求教,想根據選中的radio來獲取該radio所在那一行裡面的所有的td值(每個td裡面的值要分別獲取出來)
該怎麼做呢?

 <c:forEach items="${logoutAccountForm.accountList}"
                                var="logoutList">
                                <tr height="55" class="table_centent_bj_color_b" >
                                    <td width="100" class=""><span class="radio_wrap">
                                            <input type="radio" id="xh" name="xh" value="" /> <label
                                            for="xh" class="check"></label>
                                    </span></td>
                                    <td width="350" class="" id="accNo"><p>${logoutList.accNo}
                                        </p></td>
                                    <td width="200" class="" id="custName"><p>${logoutList.customer.custName}
                                        </p></td>
                                    <td width="300" class="" id="openBank"><p>${logoutList.openbank}
                                        </p></td>
                                    <td width="250" class="" id="openDate"><p>${logoutList.openDate}
                                        </p></td>
                                </tr>
                            </c:forEach>

最佳回答:


通多dom關系來獲取

     $('input[name="xh"]:checked').each(function () {
        var tr = $(this).closest('tr'), tds = tr.find('td');
        alert(tds.eq(1).text())
        alert(tds.eq(2).text())
        alert(tds.eq(4).text())
        //.....
    });
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved