bootstrap-table表格插件行双击事件触发

下面是使用了bootstrap-table的一个表格

bootstrap-table表格插件行双击事件触发_第1张图片

这是双击后弹出的提示框

bootstrap-table表格插件行双击事件触发_第2张图片

代码如下

$(function () {
    $('#table').bootstrapTable({
        data: data,//数据源
        onDblClickCell: function (field, value,row,td) {
           alert(value);   
        } 
    });
});

下面展示括号中的变量打印出来的日志数据

bootstrap-table表格插件行双击事件触发_第3张图片

你可能感兴趣的:(js,前端技术,bootstrap,html)