bootstrap-table實現 行拖拽 的簡單操作
阿新 • • 發佈:2018-12-20
引用 jquery.tablednd.js
bootstrap-table-reorder-rows.js
拖拽前原始表
拖拽使用後
程式碼如下,寫在cshtml檔案裡,<table>標籤也僅需加上 data-use-row-attr-func="true" data-reorderable-rows="true" 即可.
<link href="~/Content/bootstrap-table-reorder-rows.css" rel="stylesheet" /> <script src="~/Script/jquery.tablednd.js"></script> <script src="~/Script/bootstrap-table-reorder-rows.js"></script> <table id="table" data-use-row-attr-func="true" data-reorderable-rows="true"></table> </div>