Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MVC 中工作并使用 jquery.jeditable 插件在网格中进行就地编辑。它允许我一次执行一个单元格编辑,你能告诉我如何使用 jeditable 插件使整行可编辑吗?
$('#rowId td').editable("url_here", { onblur : 'ignore', event : 'make_cell_editable" //other options here }); $('#rowId').click(function (){ $(this).each(function (){ $(this).trigger('make_cell_editable'); }); });