1

我有一个使用我的 servlet 类构造的带有 HTML 的表。当尝试使用 javascript 函数删除此表中的一行时,我必须首先将不同的 id 放在单独的元素上。我用这样的隐藏类型解决它:

retour.append("<td>");
retour.append("<input type=\"hidden\" id=\"id_"+nomTab+"_"+compteur+"\"  value=\""+object.getIdDailyTimeSheet()+"\"/>");
retour.append("<button id=\"del\" name=\"del\"  type=\"button\" onClick=DeleteARow('+id_"+nomTab+"_"+compteur+"')>");
retour.append("<img src=icon_delete.gif />");
retour.append("</button>");
retour.append("</td>");

如您所见,每个元素都有一个删除按钮。我想知道如何删除一行。

认为。

4

4 回答 4

3
function deleteRow(r)
{
var i = r.parentNode.parentNode.rowIndex;
document.getElementById('myTable').deleteRow(i);
}

你应该看看这个 dom 页面:

http://www.w3schools.com/js/js_ex_dom.asp

希望这可以帮助。

于 2010-05-21T14:27:09.280 回答
2

我不明白你为什么要使用<input type="hidden" />. 相反,您应该使用一些 DOM 脚本。(或 jQuery)

下面是一个使用 DOM 脚本的示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>Delete a Row Example</title>
    <script type="text/javascript">
//<![CDATA[
        window.onload = function() {
            var table = document.getElementById("the-table");
            var buttons = table.getElementsByTagName("input"); // all the <input /> elements which were in the table
            for(var i=0; i<buttons.length; i++) { // loop all over the <input /> elements in the table
                if(buttons[i].name=="delete-this-row") { // if they are marked as "delete this row" inputs...
                    buttons[i].onclick = function() { // give them onclick even handlers
                        var buttonCell = this.parentNode; // now buttonCell is the <td> which contains the <input />
                        var deleteThisRow = buttonCell.parentNode; // now deleteThisRow is the row we want to delete
                        deleteThisRow.parentNode.removeChild(deleteThisRow);
                    }
                }
            }
        }
//]]>
    </script>
</head>
<body>
    <table id="the-table">
        <tbody>
            <tr>
                <td>0,0</td>
                <td>1,0</td>
                <td>2,0</td>
                <td><input type="button" name="delete-this-row" value="Delete This Row" /></td>
            </tr>
            <tr>
                <td>0,1</td>
                <td>1,1</td>
                <td>2,1</td>
                <td><input type="button" name="delete-this-row" value="Delete This Row" /></td>
            </tr>
            <tr>
                <td>0,2</td>
                <td>1,2</td>
                <td>2,2</td>
                <td><input type="button" name="delete-this-row" value="Delete This Row" /></td>
            </tr>
        </tbody>
    </table>
</body>
</html>

我在这里使用的想法不是在行上使用标识符;而是使用按钮的位置来确定要删除的行。您删除其所在的行。

由于我onclick在我的 javascript 中定义了事件处理程序(而不是在onclick属性中),所以我使用的函数可以使用this关键字访问单击的元素。从那里,我可以开始爬上this.parendNodes 一直到我的<tr>元素。

<input type="button" />你应该能够用一个元素来做我对元素所做的同样的事情<button>

或者,您也可以使用deleteRow(...).

于 2010-05-21T14:31:48.930 回答
0

DeleteRow javascript 方法应该有代码循环遍历 Table 元素,识别要删除的行,然后调用文档对象的 delete 方法。

于 2010-05-21T14:23:10.967 回答
0
function DeleteARow(id) {
    var row = document.getElementById(id);
    if ( row ) {
        row.parentNode.removeChild(row);
    }
}
于 2010-05-21T14:27:10.577 回答