我使用Footable 3.0.9并使用JSON加载数据。 例: http://fooplugins.github.io/FooTable/docs/examples/component/showcase.html
我想为每个<tr>
添加一个html属性,在本例中为'data-id'
,因此我可以在该行上使用js。 id是在JSON中设置的,但我不知道如何将其设置为其tr上的data-id
属性
答案 0 :(得分:0)
我不熟悉footable,但使用jQuery,您可以轻松设置数据属性。
var a = $('#mydiv').data('id'); //getter
$('#mydiv').data('id', 'mydiv_1'); //setter
所以在可填写的代码中:
$editor.find('#id').val(values.id);
$editor.find('#id').data('id', values.id);