摘要:
$("#img_file").change(function() { jQuery.ajaxFileUpload({ console.log(888) }) <input type="file" name="file" id="img_file"> 不需要点击上传文件按钮,直接判断type="fil 阅读全文
摘要:
<input type="file" id="img_file"> <button id="shangchuan" type="button">点击上传</button> //上传图片的ajax $("#shangchuan").click(function() { console.log(222) 阅读全文
摘要:
// 验证手机号 function isPhoneNo(phone) { var pattern = /^1[34578]\d{9}$/; return pattern.test(phone); } 阅读全文