Using the BootstrapTable plug-in, how can I get the value of the current edit input and other fields in the same row after editing?

how can I use BootstrapTable, to get the value of the currently edited input and other fields in the same row after editing?

for example:

clipboard.png

after filling in the number 4 in input, how to get the "4" and the peer"s "asdfESS" and "out of control" after losing focus?

The

page references the following js files

/ bootstrap-table/bootstrap-table.js
/ bootstrap-table/locale/bootstrap-table-zh-CN.min.js
/ bootstrap-table/extensions/editable/bootstrap-table-editable.js
/ bootstrap-table/bootstrap-editable.js


onClickRow: function (row) {
    console.log(row);          
},

you know the whole row of data when you click. As for the data you edited, you need to write the blur event to get it

.
Menu