要注意的是記得要先引用element操作模塊 ,否則是無法綁定的
創(chuàng)新互聯(lián)自2013年起,先為廬陽等服務(wù)建站,廬陽等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為廬陽企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。格式:
$(document).on(事件,標(biāo)識,function(){});
layui.use(['jquery', 'form', 'table', 'element'], function() { var form = layui.form; var table = layui.table; var element = layui.element; var $ = layui.$; // form.render(); table.render({ elem: '#tableList', // height: 315, url: "{{route('admin.data')}}", page: true, //開啟分頁 cols: [ [ //表頭 { field: 'id', title: 'ID', sort: true, fixed: 'left' }, { field: 'name', title: '用戶名' }, { field: 'role', title: '角色', sort: true }, { field: 'status', title: '狀態(tài)', templet: function(d) { return d.status == 0 ? '禁止' : '啟用' } }, { field: 'created_at', title: '創(chuàng)建時間' }, { title: '操作', // minWidth: 200, templet: function(d) { return '' } } ] ] }); //綁定事件 $(document).on('click', '#edit', function(data) { var id = $(this).attr('data-id'); }); });