JS-Table动态增加删除行

HTML
参考资料

http://www.runoob.com/jsref/dom-obj-document.html

<html>
    <head>
        <meta charset="UTF-8">
        <title>title>
    head>
    <body>
        <p>姓名<input type="text" id="name" />
        <input type="button" value="添加" onclick="add()" /><br />
        电话<input type="text" id="tel" />p>
        <p>
            <table border="1px" id="tb">
                <tr>
                    <td>姓名td>
                    <td>电话td>
                    <td>actiontd>
                tr>
            table>
        p>
    body>

html>

JS代码块

你可能感兴趣的:(JS-Table动态增加删除行)