1.遍历每一行
亮点: each(function(i)) ,i 就是每一行的序号,从0开始
-
<script type="text/javascript">
-
$(function(){
-
$("#table1 tr").each(function(i){
-
$(this).click(function(){
-
alert("你点击的是第"+(i+1)+"行");
-
});
-
});
-
});
-
</script>
2.遍历被选中的多行的某一列数据
-
function getSelectedRow() {
-
var rowselect = [];
-
$table.find('tr.selected').each(function () {
-
var val = $(this).data('index');
-
var rowvalue = $table.bootstrapTable('getData')[val].case_id;
-
rowselect.push(rowvalue);
-
});
-
return rowselect;
-
}
阅读(953) | 评论(0) | 转发(0) |