https://github.com/codfrm/cmltable
https://github.com/codfrm/cmltable
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codfrm/cmltable
- Owner: CodFrm
- Created: 2017-03-26T07:26:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-08T06:43:59.000Z (about 8 years ago)
- Last Synced: 2025-06-01T05:18:32.757Z (8 months ago)
- Language: JavaScript
- Size: 107 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CMLTable
基于jQuery编写
## 引用
```
```
## 创建
```
$('#test').createCMLTable({
url:'http://127.0.0.1/controller.php',
action:[{
action:'delete',
title:'删除'
},{
action:'absdelete',
title:'永久删除'
}
],
columns: [{
checkbox: true
}, {
field: 'uid',
title: 'UID',
},{
field:'user',
title:'用户名'
}]
});
```
