0

我正在尝试将一些简单的功能应用于footable。我有一个脚手架,你可以在行中使用标签。在每一行,我希望能够单击 Enter 以展开当前选定行的隐藏内容/详细信息,但是我在定位单击功能和添加按键输入时遇到了一些麻烦。

这是目前我添加的一些 jquery,但这不会仅仅因为 HTML 是从 javascript 呈现的,这意味着在我用鼠标单击行之前隐藏的内容不会呈现:

$("tbody").delegate("*", "focus blur", function () {
    var elem = $(this);
    setTimeout(function () {
        elem.toggleClass("focused", elem.is(":focus"));
    }, 0);
});

$('.footable > tbody  > tr').keypress(function (e) {

    if ($(this).hasClass("focused") && e.which == '13') {
        //alert('test');
        $('.footable-row-detail').css({ "display": "table-row" });
    }

});
4

2 回答 2

0

根据您的第一个示例,keypress也为事件使用委托事件处理程序:

$('.footable > tbody').on('keypress', '> tr', function (e) {
    if ($(this).hasClass("focused") && e.which == '13') {
        //alert('test');
        $('.footable-row-detail').css({ "display": "table-row" });
    }
});

只要.footabletable 元素始终存在,事件就会冒泡到那里的事件处理程序。然后将'> tr'选择器应用于气泡链中的元素。这意味着该行只需要在事件时间匹配。

如果footable表本身是动态的,则将祖先上移到更永久的位置。document如果没有其他东西更接近/方便,则为默认值(切勿body用于委托事件,因为它有由样式引起的错误):

$(document).on('keypress', '.footable > tbody > tr', function (e) {
    if ($(this).hasClass("focused") && e.which == '13') {
        //alert('test');
        $('.footable-row-detail').css({ "display": "table-row" });
    }
});
于 2015-02-03T15:46:45.767 回答
0

找出问题所在。

$table.find(opt.toggleSelector).unbind('keypress').keypress(function (e) {
            if ($(this).hasClass('focused') && e.which == 13) {
                //alert('You pressed enter!');
                $(this).trigger(trg.toggleRow);
            } 
        });
于 2015-02-06T09:46:48.720 回答