首页 > 代码库 > table中JS选取行列
table中JS选取行列
<table border="1" align="center" style="width: 500px" id="doctorTable"> <tr> <th>医疗保障人员</th> <th>联系方式</th> <th>操作</th> </tr> <tr > <td><input style="width: 170px" id="name2" name="name" required="required"/></td> <td><input style="width: 170px" id="phone2" name="phone" required="required"/></td> <td><input type="button" value="http://www.mamicode.com/删除" style="width: 80px" onclick="delDoctorTr(2)" /></td> </tr> </table> //html
<script type="text/javascript"> function addDoctorTr() { var html = "<tr id=‘tr2‘>" +$("#doctorTable tr:eq(1)").html() + "</tr>"; m = doctorTable.rows.length; n = m + 1; html = html.replace(id="name2",id="name"+n); html = html.replace(id="phone2",id="phone"+n); html = html.replace(onclick="delDoctorTr(2)",onclick="delDoctorTr"+"("+n+")"); $("#doctorTable ").append(html); } function delDoctorTr(n) { length = $("#doctorTable tr").length; if (length > 2) { m = n -1; alert($("#doctorTable tr:eq"+"("+m+")").html()); $("#doctorTable tr:eq"+"("+m+")").remove(); } else { jBox.tip("至少保留一行!"); } } </script> //js
//doctorTable.rows.length 获取ID为doctorTable的所有的行数
//templateTable.rows[0].cells.length 获取ID为templateTable的表格的第一行的有几列
//$("#doctorTable tr:eq(1)").html() 第一行的代码
table中JS选取行列
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。