码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript- onclick获取同行其它td的值

时间:2018-12-17 14:41:20      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:back   fun   nbsp   col   其它   section   class   scripts   .text   

 1 <table class="table table-bordered ">
 2     <tr class="control-label">
 3         @for (int i = 0; i < 5; i++)
 4         {
 5             <th>ColumnName_@i</th>
 6         } 
 7     </tr>
 8    @for (int i = 0; i < 10; i++)
 9    {
10       <tr>
11           @for (int j = 0; j < 5; j++)
12           {
13               <td><a href="#" onclick=‘GetOtherTDValue(this)‘>ColumnValue_@i@j</a></td>
14           } 
15       </tr>
16    }
17 </table>
18 
19 @section scripts{
20     <script type="text/javascript">  
21         function GetOtherTDValue(td) {
22             var parentTR = td.parentNode.parentNode; // 获取当前 A 标签所在的TR
23             var firstTd_value = $(parentTR).children(td).eq(0).text(); //获取TR 标签下第一个TD 标签的值
24             alert(firstTd_value);
25         }
26     </script>        
27 }  

 

JavaScript- onclick获取同行其它td的值

标签:back   fun   nbsp   col   其它   section   class   scripts   .text   

原文地址:https://www.cnblogs.com/allenzhang/p/10130692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!