登录  /  注册
首页 > web前端 > js教程 > 正文

js怎么清空tr

(*-*)浩
发布: 2019-05-18 17:30:38
原创
4654人浏览过

js清空tr的实现方法:首先获取第一个td的要删除行的index;然后进行循环操作;最后将tr中的td的数据都删除一遍即可实现清空tr。

js怎么清空tr

本篇文章将介绍如何使用js清空tr里的所有数据。

使用js清空tr里的数据,首先你要获取第一个td的要删除行的Index,然后进行循环操作,将tr中的td的数据都删除一遍,这时tr就被清空了。这是一个思路,下面的代码进行这样写的,当然,如果你对节点,选择器理解透彻,还将以将以下代码更加的简化.

请看以下代码:

nbsp;HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


<title> New Document </title><meta><meta><meta><meta><script>// 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);
//获取将要删除的行的Index
var rowIndex = signItem.rowIndex;
  
//删除指定Index的行
signFrame.deleteRow(rowIndex);
  
//重新排列序号,如果没有序号,这一步省略
for(i=rowIndex;i<signFrame.rows.length;i++){
signFrame.rows[i].cells[0].innerHTML = i.toString();
}
}
//清空列表
function ClearAllSign(){
if(confirm(&#39;确定要清空所有参与人吗?&#39;)){
var signFrame = findObj("SignFrame",document);
var rowscount = signFrame.rows.length;
  
//循环删除行,从最后一行往前删除
for(i=rowscount - 1;i > 0; i--){
  signFrame.deleteRow(i);
}
  
//重置最后行号为1
var txtTRLastIndex = findObj("txtTRLastIndex",document);
txtTRLastIndex.value = "1";
  

}
}
</script>
  

<div>
<table>
       <tr>
        <td>序号</td>
        <td>用户姓名</td>
        <td>电子邮箱</td>
        <td>固定电话</td>
        <td>移动手机</td>
        <td>公司名称</td>
        <td> </td>
       </tr>
    </table>
  </div>
  <div>
    <input> 
   <input>
   <input>
  </div>
  

登录后复制

以上就是js怎么清空tr的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号