100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > js动态给table添加/删除tr办法【javascript】

js动态给table添加/删除tr办法【javascript】

时间:2021-03-27 03:56:33

相关推荐

js动态给table添加/删除tr办法【javascript】

web前端|js教程

js,table,tr

web前端-js教程

微盟三级分销源码下载,ubuntu内置的程序,tomcat+不能上传,全网爬虫视频,php游戏制作教程,seo公司专业乐云seolzw

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 AddSignRow(){ //读取最后一行的行号,存放在txtTRLastIndex文本框中

var txtTRLastIndex = findObj("txtTRLastIndex",document);

var rowID = parseInt(txtTRLastIndex.value);

var signFrame = findObj("SignFrame",document);

//添加行

var newTR = signFrame.insertRow(signFrame.rows.length);

newTR.id = "SignItem" + rowID;

//添加列:序号

var newNameTD=newTR.insertCell(0);

//添加列内容

newNameTD.innerHTML = newTR.rowIndex.toString();

//添加列:姓名

var newNameTD=newTR.insertCell(1);

//添加列内容

newNameTD.innerHTML = "";

//添加列:电子邮箱

var newEmailTD=newTR.insertCell(2);

//添加列内容

newEmailTD.innerHTML = "";

//添加列:电话

var newTelTD=newTR.insertCell(3);

//添加列内容

newTelTD.innerHTML = "";

//添加列:手机

var newMobileTD=newTR.insertCell(4);

//添加列内容

newMobileTD.innerHTML = "";

java五子棋源码,vscode安装后不能启动,flink部署ubuntu,tomcat web项目目录,海带有爬虫,php生成apk,seo内容建设原则有哪些,支付工具网站源码,dede模板带筛选lzw

//添加列:公司名

var newCompanyTD=newTR.insertCell(5);

//添加列内容

newCompanyTD.innerHTML = "";

//添加列:删除按钮

var newDeleteTD=newTR.insertCell(6);

//添加列内容

newDeleteTD.innerHTML = "

php彩票源码,编辑器vscode实现原理,ubuntu 换gome,tomcat 8登录密码,身体爬虫感,php免费发短信,SEO优化个人导航页源码lzw

删除“;

//将行号推进下一行

txtTRLastIndex.value = (rowID + 1).toString() ;

}

//删除指定行

function DeleteSignRow(rowid){

var signFrame = findObj(“SignFrame”,document);

var signItem = findObj(rowid,document);

//获取将要删除的行的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(‘确定要清空所有参与人吗?’)){

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”;

//预添加一行

AddSignRow();

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。