bootstrap-table,当前行单击事件

来源:互联网 发布:淘宝卖家花呗开通条件 编辑:程序博客网 时间:2024/06/06 04:39
<table class="table-hover" id="dataTable"data-class="table table-hover"data-sort-name="createTime"data-sort-order="desc"data-query-params="listParams"data-toggle="table"data-url="listData"data-side-pagination="server"data-pagination="true"><thead><tr><th data-field="userId"  data-align="center">用户id</th><th data-field="userName"  data-align="center">用户名称</th><th data-field="title"  data-align="center" data-formatter="titleFormatter">主题</th></tr></thead></table>



$(function () {$('#dataTable').on('click-row.bs.table', function (e, row, element) {//$(element).css({"color":"blue","font-size":"16px;"});console.log(row);});})


原创粉丝点击