其他分享
首页 > 其他分享> > 2021-01-28

2021-01-28

作者:互联网

Bootstrap-table 获取选中行的内容,并转化成 JSON 格式。

$('#table').bootstrapTable({
				url: '/user/all', cache: false,
				search: true, showPaginationSwitch: true, showRefresh: true, showToggle: true,
				pagination: true, sortable: true, striped: true, clickToSelect: true,
				columns: [
					{ field: "state", checkbox: true }, //复选框
					{...}, 
				]
<script>
	function resetPassword() {
		//返回选择行的数据
		json = JSON.stringify($("#table").bootstrapTable('getSelections'));
		json1 = json.slice(1, -1);
		json2 = jQuery.parseJSON(json1);
		json3 = eval('(' + json1 + ')');
	}
</script>
变量类型输出
jsonstring'[{...}]' -> [{...}]
json1string'{...}' -> {...}
json2object{...} -> {...}
json3object{...} -> {...}

未测试多行

标签:bootstrapTable,...,01,28,json,2021,json1,table,true
来源: https://blog.csdn.net/qq_42316807/article/details/113247020