隨筆-179  評論-666  文章-29  trackbacks-0

          點(diǎn)“添加參與人”按鈕可以添加一行,每行后面都有一個刪除按鈕,可以刪除所在行,“清空”則刪除所有的行。 這種效果在需要批量添加數(shù)據(jù)的時候非常有用,可以在客戶端添加完一批數(shù)據(jù),然后通過AJAX一次提交給服務(wù)器處理,下面是完整代碼:

          Body部份:
             
          <div>
            
          <table width="613" border="0" cellpadding="2" cellspacing="1" id="SignFrame">
                        
          <tr id="trHeader">
                          
          <td width="27" bgcolor="#96E0E2">序號</td>
                          
          <td width="64" bgcolor="#96E0E2">用戶姓名</td>
                          
          <td width="98" bgcolor="#96E0E2">電子郵箱</td>
                          
          <td width="92" bgcolor="#96E0E2">固定電話</td>
                          
          <td width="86" bgcolor="#96E0E2">移動手機(jī)</td>
                          
          <td width="153" bgcolor="#96E0E2">公司名稱</td>
                          
          <td width="57" align="center" bgcolor="#96E0E2">&nbsp;</td>
                        
          </tr>
                  
          </table>
             
          </div>
             
          <div>
                  
          <input type="button" name="Submit" value="添加參與人" onclick="AddSignRow()" /> 
               
          <input type="button" name="Submit2" value="清空" onclick="ClearAllSign()" />
               
          <input name='txtTRLastIndex' type='hidden' id='txtTRLastIndex' value="1" />
             
          </div>


          JS代碼部份<script language="javascript">// 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);
           
          //添加列內(nèi)容
           newNameTD.innerHTML = newTR.rowIndex.toString();
           
           
          //添加列:姓名
           var newNameTD=newTR.insertCell(1);
           
          //添加列內(nèi)容
           newNameTD.innerHTML = "<input name='txtName" + rowID + "' id='txtName" + rowID + "' type='text' size='12' />";
           
           
          //添加列:電子郵箱
           var newEmailTD=newTR.insertCell(2);
           
          //添加列內(nèi)容
           newEmailTD.innerHTML = "<input name='txtEMail" + rowID + "' id='txtEmail" + rowID + "' type='text' size='20' />";
           
           
          //添加列:電話
           var newTelTD=newTR.insertCell(3);
           
          //添加列內(nèi)容
           newTelTD.innerHTML = "<input name='txtTel" + rowID + "' id='txtTel" + rowID + "' type='text' size='10' />";
           
           
          //添加列:手機(jī)
           var newMobileTD=newTR.insertCell(4);
           
          //添加列內(nèi)容
           newMobileTD.innerHTML = "<input name='txtMobile" + rowID + "' id='txtMobile" + rowID + "' type='text' size='12' />";
           
           
          //添加列:公司名
           var newCompanyTD=newTR.insertCell(5);
           
          //添加列內(nèi)容
           newCompanyTD.innerHTML = "<input name='txtCompany" + rowID + "' id='txtCompany" + rowID + "' type='text' size='20' />";
           
           
           
          //添加列:刪除按鈕
           var newDeleteTD=newTR.insertCell(6);
           
          //添加列內(nèi)容
           newDeleteTD.innerHTML = "<div align='center' style='width:40px'><a href='javascript:;' onclick=\"DeleteSignRow('SignItem" + rowID + "')\">刪除</a></div>";
           
           
          //將行號推進(jìn)下一行
           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;
            
            
          //循環(huán)刪除行,從最后一行往前刪除
            for(i=rowscount - 1;i > 0; i--){
             signFrame.deleteRow(i);
            }

            
            
          //重置最后行號為1
            var txtTRLastIndex = findObj("txtTRLastIndex",document);
            txtTRLastIndex.value 
          = "1";
            
            
          //預(yù)添加一行
            AddSignRow();
           }

          }

          </script>
          posted on 2009-06-03 14:59 Alpha 閱讀(6501) 評論(2)  編輯  收藏 所屬分類: jQuery JavaScript Flex

          評論:
          # re: JavaScript動態(tài)添加刪除表格行(支持FireFox)[未登錄] 2015-01-21 17:39 | freebird
          如果要使得某一個td使用select,應(yīng)該怎么弄呢?  回復(fù)  更多評論
            
          # aa[未登錄] 2016-04-21 22:37 | aa
          啊啊啊啊  回復(fù)  更多評論
            
          主站蜘蛛池模板: 隆林| 桐梓县| 浮山县| 布尔津县| 吴川市| 潢川县| 年辖:市辖区| 韩城市| 稷山县| 辉南县| 和龙市| 龙井市| 厦门市| 监利县| 宜宾市| 安义县| 循化| 凤阳县| 山西省| 鄂尔多斯市| 康平县| 德令哈市| 潞西市| 昌乐县| 伊宁市| 临颍县| 孝感市| 文水县| 中山市| 互助| 莆田市| 道孚县| 邢台县| 永泰县| 赫章县| 若羌县| 峨山| 沧州市| 澳门| 老河口市| 乌鲁木齐市|