温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

bootstrap-table 中怎么实现表格行内编辑

发布时间:2021-08-09 17:12:33 来源:亿速云 阅读:198 作者:Leah 栏目:开发技术

这篇文章给大家介绍bootstrap-table 中怎么实现表格行内编辑,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

html

<div class="table-box" style="margin: 20px;">    <div id="toolbar">        <button id="button" class="btn btn-default">insertRow</button>        <button id="getTableData" class="btn btn-default">getTableData</button>    </div>    <table id="table"></table></div>

script

$(function() {    let $table = $('#table');    let $button = $('#button');    let $getTableData = $('#getTableData');    $button.click(function() {        $table.bootstrapTable('insertRow', {            index: 0,            row: {                id: '',                name: '',                price: ''            }        });    });    $table.bootstrapTable({        url: 'data2.json',        toolbar: '#toolbar',        clickEdit: true,        showToggle: true,        pagination: true,       //显示分页条        showColumns: true,        showPaginationSwitch: true,     //显示切换分页按钮        showRefresh: true,      //显示刷新按钮        //clickToSelect: true,  //点击row选中radio或CheckBox        columns: [{            checkbox: true        }, {            field: 'id',            title: 'Item ID'        }, {            field: 'name',            title: 'Item Name'        }, {            field: 'price',            title: 'Item Price'        }, ],        /**         * @param {点击列的 field 名称} field         * @param {点击列的 value 值} value         * @param {点击列的整行数据} row         * @param {td 元素} $element         */        onClickCell: function(field, value, row, $element) {            $element.attr('contenteditable', true);            $element.blur(function() {                let index = $element.parent().data('index');                let tdValue = $element.html();                saveData(index, field, tdValue);            })        }    });    $getTableData.click(function() {        alert(JSON.stringify($table.bootstrapTable('getData')));    });    function saveData(index, field, value) {        $table.bootstrapTable('updateCell', {            index: index,       //行索引            field: field,       //列名            value: value        //cell值        })    }});

实现原理

通过bootstrap table自带的 onClickCell 方法,点击 td 添加 contenteditable 属性(ps: 使元素可编辑),于是 td 元素具有了类似于文本框的 focus 和 blur 事件,用户点击 td 获取焦点,编辑完内容失去焦点后,调用 updateCell方法更新单元格数据。

引入

 <link rel="stylesheet" type="text/css" href="js/bootstrap/bootstrap-3.3.7-dist/css/bootstrap.min.css" />    <link rel="stylesheet" type="text/css" href="js/bootstrap-table/1.12.1/bootstrap-table.min.css" />    <script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>    <script src="js/bootstrap/bootstrap-3.3.7-dist/js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>    <script src="js/bootstrap-table/1.12.1/bootstrap-table.min.js" type="text/javascript" charset="utf-8"></script>    <script src="js/bootstrap-table/1.12.1/locale/bootstrap-table-zh-CN.min.js" type="text/javascript" charset="utf-8"></script>

json

[    { "id": 1, "name": "Item 1", "price": "¥1" },    { "id": 2, "name": "Item 2", "price": "¥2" },    { "id": 3, "name": "Item 3", "price": "¥3" }]

关于bootstrap-table 中怎么实现表格行内编辑就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI