bootstrap table用户点击行时的事件,事件名称 onClickRow,返回参数如下。
参数名称 | 说明 |
row | 被点击行的原始数据如{id:100,name:"itxst.com",num:22} |
$element | 被点击行的tr元素对象 |
field | 被点击的字段,如id |
$('#table').bootstrapTable({
columns: columns,
data: data,
onClickRow:function(row, $element, field)
{
alert(JSON.stringify(row));
}
});
$('#table').on('click-row.bs.table', function (e, row, $element, field) {
alert(JSON.stringify(row));
})
注意:初始化时注册和初始化后注册的第一个返回参数对象是不一样的
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://www.itxst.com/package/bootstrap-table-1.14.1/jquery-3.3.1/jquery.js"></script>
<link href="https://www.itxst.com/package/bootstrap-table-1.14.1/bootstrap-4.3.1/css/bootstrap.css" rel="stylesheet" />
<link href="https://www.itxst.com/package/bootstrap-table-1.14.1/bootstrap-table-1.14.1/bootstrap-table.css" rel="stylesheet" />
<script src="https://www.itxst.com/package/bootstrap-table-1.14.1/bootstrap-table-1.14.1/bootstrap-table.js"></script>
<title>bootstrap table onClickRow点击行事件</title>
<style>
.table-demo {
width: 80%;
margin: 30px auto 0px auto;
}
</style>
</head>
<body>
<div class="table-demo">
<table id="table"></table>
</div>
<script>
//设置需要显示的列
var columns = [{
field: 'Id',
title: '编号'
}, {
field: 'ProductName',
title: '产品名称'
}, {
field: 'StockNum',
title: 'Item 库存'
}];
//需要显示的数据
var data = [{
Id: 1,
ProductName: '香蕉',
StockNum: '100'
}, {
Id: 2,
ProductName: '苹果',
StockNum: '200'
}];
//bootstrap table初始化数据
$('#table').bootstrapTable({
columns: columns,
data: data,
onClickRow:function(row, $element, field)
{
alert(JSON.stringify(row));
}
});
</script>
</body>
</html>