bootstrap-table数据表格的onClickRow事件,实现单击行选中的效果

时间:2025-04-05 09:04:45
var options = { url: "/list", showSearch: false, showRefresh: false, showToggle: false, showColumns: false, onClickRow: onClickRow, //此处为单击行调用的方法 columns: [{ checkbox: true }, { field : 'userId', title : '用户ID' }, { field : 'userCode', title : '用户编号' }, { field : 'userName', title : '用户姓名' }] }; $.table.init(options); //单击行调用的方法 function onClickRow(row, $element){ $element[0].firstElementChild.firstElementChild.click(); }