0

我在 jquery 中发现了这个非常好的脚本,可以在双击时编辑表格的内容。现在我正在尝试通过添加按钮向表格添加更多功能。我要添加的第一个功能是“添加”。看看我的小提琴,事情就会清楚了

此刻一切似乎都正常。但是,当我在单击添加时添加一行时,它不允许我像其他行一样编辑内容

HTML

<table class="editableTable">
    <thead>
        <tr>
            <th>Code</th>
            <th>Name</th>
            <th>Email</th>
            <th>Phone</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>001</td>
            <td>Pedro Fernandes</td>
            <td>pedro.ferns@myemail.com</td>
            <td>(21) 9999-8888</td>
        </tr>     

    </tbody>
</table>
<td style="text-align:center;">
    <button onclick="addrecord()" >Add</button></td>

查询

$(function () {
    $("td").dblclick(function () {
        var OriginalContent = $(this).text();

        $(this).addClass("cellEditing");
        $(this).html("<input type='text' value='" + OriginalContent + "' />");
        $(this).children().first().focus();

        $(this).children().first().keypress(function (e) {
            if (e.which == 13) {
                var newContent = $(this).val();
                $(this).parent().text(newContent);
                $(this).parent().removeClass("cellEditing");
            }
        });

        $(this).children().first().blur(function () {
            $(this).parent().text(OriginalContent);
            $(this).parent().removeClass("cellEditing");
        });
    });
});
function addrecord(){
      $('<tr><td>004</td><td></td><td></td><td></td></tr>').appendTo('table');     
}
4

4 回答 4

4

改变

$("td").dblclick(function () {

$(".editableTable").on("dblclick", "td", function () {

两者的区别在于前者将事件添加到现有的 TD,但不会在您尝试实现的任何动态添加的 TD 上添加相同的事件。然而,后者也处理动态添加的任何 TD。

于 2013-07-19T12:00:48.603 回答
0

使其可双击的代码仅在开始时运行,因此该代码不会应用于您创建的任何新行。一个非常肮脏的技巧是将代码复制到您的函数中,尽管肯定有其他方法。

    function addrecord(){
      $('<tr><td>004</td><td></td><td></td><td></td></tr>').appendTo('table');     
      $("td").dblclick(function () {
        var OriginalContent = $(this).text();

        $(this).addClass("cellEditing");
        $(this).html("<input type='text' value='" + OriginalContent + "' />");
        $(this).children().first().focus();

        $(this).children().first().keypress(function (e) {
            if (e.which == 13) {
                var newContent = $(this).val();
                $(this).parent().text(newContent);
                $(this).parent().removeClass("cellEditing");
            }
        });

        $(this).children().first().blur(function () {
            $(this).parent().text(OriginalContent);
            $(this).parent().removeClass("cellEditing");
        });
    });
}
于 2013-07-19T12:04:00.257 回答
0

好的,您有静态表,在每个 td 上注册事件侦听器,然后添加新行。当然,此时没有点击监听器。创建新行后需要注册监听器:

var row = $('<tr><td>004</td><td></td><td></td><td></td></tr>');
row.find("td").dblclick(mylistener)
row.appendTo('table');
于 2013-07-19T12:04:36.937 回答
-1

.live 会成功的..

$(function () {
$("td").live("dblclick",function () {
    var OriginalContent = $(this).text();

    $(this).addClass("cellEditing");
    $(this).html("<input type='text' value='" + OriginalContent + "' />");
    $(this).children().first().focus();

    $(this).children().first().keypress(function (e) {
        if (e.which == 13) {
            var newContent = $(this).val();
            $(this).parent().text(newContent);
            $(this).parent().removeClass("cellEditing");
        }
    });

    $(this).children().first().blur(function () {
        $(this).parent().text(OriginalContent);
        $(this).parent().removeClass("cellEditing");
    });
});
});
function addrecord(){
  $('<tr><td>004</td><td></td><td></td><td></td></tr>').appendTo('table');     
}
于 2013-07-19T12:01:06.807 回答