12 2017 档案
摘要:地址: http://www.h-ui.net/H-ui.admin.shtml
阅读全文
摘要:// 获取随机的字符串 function get_rand_char($length = 6) { $str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strLength = 61; for($i = 0; $i < $length; $i ++) { ...
阅读全文
摘要:var countdown = 120; var settime = function (that) { if (countdown == 0) { that.setData({ codeText: '获取验证码', code_time: '', isClick: false }) ...
阅读全文
摘要:http://echarts.baidu.com/index.html
阅读全文
摘要:String.prototype.isEmpty = function () { var s1 = this.replace(/[\r\n]/g, '').replace(/[ ]/g, ''), s2 = (s1 == '') ? true : false; return s2; }; $(this).html().isEmpty();
阅读全文
摘要://这样写没有效果 $(".xx").clcik(function(){····}); //改成这样写 $(document).on('click', '.xxx', function(e){ });
阅读全文
摘要:PHP代码如下: $filename = '/path/'.$_GET['file'].'.txt'; //文件路径header("Content-Type: application/force-download");header("Content-Disposition: attachment;
阅读全文