js清空tr的实现方法:首先获取第一个td的要删除行的Index;然后进行循环操作;最后将tr中的td的数据都删除一遍即可实现清空tr。
本篇文章将介绍如何使用js清空tr里的所有数据。
使用js清空tr里的数据,首先你要获取第一个td的要删除行的Index,然后进行循环操作,将tr中的td的数据都删除一遍,这时tr就被清空了。这是一个思路,下面的代码进行这样写的,当然,如果你对节点,选择器理解透彻,还将以将以下代码更加的简化.
请看以下代码:
New Document // Example: obj = findObj("image1");function findObj(theObj, theDoc){ var p, i, foundObj; if(!theDoc) theDoc = document; if( (p = theObj.indexOf("?")) > 0 && parent.frames.length) { theDoc = parent.frames[theObj.substring(p+1)].document; theObj = theObj.substring(0,p); } if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj]; for (i=0; !foundObj && i < theDoc.forms.length; i++) foundObj = theDoc.forms[i][theObj]; for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) foundObj = findObj(theObj,theDoc.layers[i].document); if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj); return foundObj;}//删除指定行function DeleteSignRow(rowid){var signFrame = findObj("SignFrame",document);var signItem = findObj(rowid,document);alert(rowid);//获取将要删除的行的Indexvar rowIndex = signItem.rowIndex; //删除指定Index的行signFrame.deleteRow(rowIndex); //重新排列序号,如果没有序号,这一步省略for(i=rowIndex;i 0; i--){ signFrame.deleteRow(i);} //重置最后行号为1var txtTRLastIndex = findObj("txtTRLastIndex",document);txtTRLastIndex.value = "1"; }}
序号 用户姓名 电子邮箱 固定电话 移动手机 公司名称
登录后复制
以上就是js怎么清空tr的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2730754.html