Feng's profileLudwig的骇客帝国BlogLists Tools Help

Blog


    March 20

    使用Javascript 动态在表格里添加和删除行

       //add a new row to the table
       function addRow()
       {
        //add a row to the rows collection and get a reference to the newly added row
        var newRow = document.all("tblGrid").insertRow();
        
        //add 3 cells (<td>) to the new row and set the innerHTML to contain text boxes
        
        var oCell = newRow.insertCell();
        oCell.innerHTML = "<input type='text' name='t1'>";
        
        oCell = newRow.insertCell();
        oCell.innerHTML = "<input type='text' name='t2'>";
        
        oCell = newRow.insertCell();
        oCell.innerHTML = "<input type='text' name='t3'>  <input type='button' value='Delete' onclick='removeRow(this);'/>";   
       }
       
       //deletes the specified row from the table
       function removeRow(src)
       {
        /* src refers to the input button that was clicked. 
           to get a reference to the containing <tr> element,
           get the parent of the parent (in this case <tr>)
        */   
        var oRow = src.parentElement.parentElement;  
        
        //once the row reference is obtained, delete it passing in its rowIndex   
        document.all("tblGrid").deleteRow(oRow.rowIndex);  
    
       }
    原文: http://www.codeproject.com/KB/scripting/DHTMLGrid.aspx
    Dynamically add and remove rows in a HTML table By eeraj

    Comments

    Please wait...
    Sorry, the comment you entered is too long. Please shorten it.
    You didn't enter anything. Please try again.
    Sorry, we can't add your comment right now. Please try again later.
    To add a comment, you need permission from your parent. Ask for permission
    Your parent has turned off comments.
    Sorry, we can't delete your comment right now. Please try again later.
    You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
    Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
    Complete the security check below to finish leaving your comment.
    The characters you type in the security check must match the characters in the picture or audio.

    To add a comment, sign in with your Windows Live ID (if you use Hotmail, Messenger, or Xbox LIVE, you have a Windows Live ID). Sign in


    Don't have a Windows Live ID? Sign up

    Trackbacks

    The trackback URL for this entry is:
    http://ludwigxu.spaces.live.com/blog/cns!1B1DC2CBB79F56F9!233.trak
    Weblogs that reference this entry
    • None