この記事では、ブートストラップ テーブル プラグインを使用してテーブルのインライン編集機能を実装する方法を紹介します。
#ブートストラップ フレームワーク最初にレンダリングを配置します:
#アプリケーション シナリオ#以前のプロジェクトでもブートストラップ テーブルを使用し、データの追加と変更はモーダル ボックスを使用して編集していました。行をクリックして編集し、新しい行を追加する必要があったので、試してみました...
#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>
##$(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值
})
}
});
ブートストラップ テーブルを自動的に使用するonClickCell メソッドを使用して、td をクリックして contenteditable 属性を追加します (ps: 要素を編集可能にします)。これにより、td 要素にはテキスト ボックスと同様のフォーカス イベントとブラー イベントが発生します。ユーザーは 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
rreee
以上がbootstrap-table テーブルのインライン編集の実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。