我正在尝试将一些简单的功能应用于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" });
}
});
答案 0 :(得分: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" });
}
});
只要.footable
表元素始终存在,事件就会冒泡到那里的事件处理程序。然后'> 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" });
}
});
答案 1 :(得分: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);
}
});