摘要: Upload Files using XMLHttpRequest - Minimal Select a File to Upload 阅读全文
posted @ 2016-10-14 17:05 黑土白云 阅读(304) 评论(0) 推荐(0) 编辑
摘要: // Generated by CoffeeScript 1.10.0 var Model, model, bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; model = null; $(function() { var dropZone; model = new ... 阅读全文
posted @ 2016-10-14 15:58 黑土白云 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 验证数字:^[0-9]*$ 验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$ 验证m-n位的数字:^\d{m,n}$ 验证零和非零开头的数字:^(0|[1-9][0-9]*)$ 验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$ 验证有1-3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$ 验证非零的正整数:^\+?[1-9][0-9]*$ 验证非零的... 阅读全文
posted @ 2016-10-14 14:29 黑土白云 阅读(134) 评论(0) 推荐(0) 编辑