摘要: jQuery使用下面两个方法来删除或是清空某个HTML元素。 remove() – 删除指定的元素(包括其子元素) empty() – 清空指定元素的子元素 阅读全文
posted @ 2017-12-18 13:36 lei12138 阅读(8755) 评论(0) 推荐(0) 编辑
摘要: dataTables排序问题 1.禁止排序 'ordering' :false 例:$('#id').DataTable({ 'ordering':false, }) 2.规定某一列排序 order的属性值有两个,asc为升序,desc为降序 'order' : [7,'desc'] //与数组下标 阅读全文
posted @ 2017-12-18 10:43 lei12138 阅读(25016) 评论(0) 推荐(2) 编辑
摘要: 1. 修改后的 tableExport 2.修改后的 jquery.base64.js 3.引入 4.调用(具体的可选参数可以上github上查看) 5.pdf导出请查看 http://blog.csdn.net/sxpsxp12/article/details/54631970 ps.更好的 ta 阅读全文
posted @ 2017-12-14 17:22 lei12138 阅读(11073) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-14 15:45 lei12138 阅读(2547) 评论(0) 推荐(0) 编辑
摘要: 以上的第一种方法在 2018-2019会发生错误 转载于:https://www.cnblogs.com/anns/p/5549695.html 这个是正确的 转载于:http://renzhen.iteye.com/blog/939862 阅读全文
posted @ 2017-12-12 15:50 lei12138 阅读(2635) 评论(0) 推荐(1) 编辑
摘要: 一、使用Load 1、在extend文件夹下面放extend/mail/phpmailer.php文件; 2、在applicatioon/index.php文件中写入 3、在index控制器中引用 二、使用use 1、在extend文件夹下面放extend/mail/phpmailer.php文件; 阅读全文
posted @ 2017-12-08 20:52 lei12138 阅读(2810) 评论(0) 推荐(1) 编辑
摘要: 方法一: if ($("#checkbox-id")get(0).checked) { // do something } 方法二: if($('#checkbox-id').is(':checked')) { // do something } 方法三: if ($('#checkbox-id').attr('checked')) { // do something }... 阅读全文
posted @ 2017-12-01 21:29 lei12138 阅读(144) 评论(0) 推荐(0) 编辑
摘要: $add = $user->allowField(true)->save($data); 阅读全文
posted @ 2017-12-01 20:35 lei12138 阅读(5385) 评论(0) 推荐(0) 编辑
摘要: 本人遇到原因是 name 里面的值相同 则会出现这样的问题 阅读全文
posted @ 2017-11-24 21:31 lei12138 阅读(725) 评论(0) 推荐(0) 编辑
摘要: 1. //需要在 fastcgi.conf下面 fastcgi_param PHP_VALUE "open_basedir=/home/wwwroot/tp5/:/tmp/:/proc/"; 阅读全文
posted @ 2017-11-16 22:13 lei12138 阅读(810) 评论(0) 推荐(0) 编辑