摘要: $("#img_file").change(function() { jQuery.ajaxFileUpload({ console.log(888) }) <input type="file" name="file" id="img_file"> 不需要点击上传文件按钮,直接判断type="fil 阅读全文
posted @ 2020-08-06 18:16 碧果果 阅读(4973) 评论(0) 推荐(0) 编辑
摘要: <input type="file" id="img_file"> <button id="shangchuan" type="button">点击上传</button> //上传图片的ajax $("#shangchuan").click(function() { console.log(222) 阅读全文
posted @ 2020-08-06 17:05 碧果果 阅读(1214) 评论(0) 推荐(0) 编辑
摘要: // 验证手机号 function isPhoneNo(phone) { var pattern = /^1[34578]\d{9}$/; return pattern.test(phone); } 阅读全文
posted @ 2020-08-06 11:12 碧果果 阅读(297) 评论(0) 推荐(0) 编辑