摘要: 地址: http://www.h-ui.net/H-ui.admin.shtml 阅读全文
posted @ 2017-12-29 11:16 不一样的开始 阅读(178) 评论(0) 推荐(0) 编辑
摘要: nohup XXXXXX & 阅读全文
posted @ 2017-12-28 16:47 不一样的开始 阅读(102) 评论(0) 推荐(0) 编辑
摘要: // 获取随机的字符串 function get_rand_char($length = 6) { $str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strLength = 61; for($i = 0; $i < $length; $i ++) { ... 阅读全文
posted @ 2017-12-27 15:45 不一样的开始 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 如101转成一百零一 阅读全文
posted @ 2017-12-27 15:39 不一样的开始 阅读(158) 评论(0) 推荐(0) 编辑
摘要: var countdown = 120; var settime = function (that) { if (countdown == 0) { that.setData({ codeText: '获取验证码', code_time: '', isClick: false }) ... 阅读全文
posted @ 2017-12-26 15:49 不一样的开始 阅读(163) 评论(0) 推荐(0) 编辑
摘要: http://echarts.baidu.com/index.html 阅读全文
posted @ 2017-12-26 11:28 不一样的开始 阅读(84) 评论(0) 推荐(0) 编辑
摘要: String.prototype.isEmpty = function () { var s1 = this.replace(/[\r\n]/g, '').replace(/[ ]/g, ''), s2 = (s1 == '') ? true : false; return s2; }; $(this).html().isEmpty(); 阅读全文
posted @ 2017-12-22 17:11 不一样的开始 阅读(1192) 评论(0) 推荐(0) 编辑
摘要: //这样写没有效果 $(".xx").clcik(function(){····}); //改成这样写 $(document).on('click', '.xxx', function(e){ }); 阅读全文
posted @ 2017-12-22 16:36 不一样的开始 阅读(7996) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-14 10:45 不一样的开始 阅读(185) 评论(0) 推荐(0) 编辑
摘要: PHP代码如下: $filename = '/path/'.$_GET['file'].'.txt'; //文件路径header("Content-Type: application/force-download");header("Content-Disposition: attachment; 阅读全文
posted @ 2017-12-05 14:57 不一样的开始 阅读(146) 评论(0) 推荐(0) 编辑