标签:type file 请求 input col bsp 用户 图片 image
<input accept="image/*" type="file" id="my_file"> 带了*表示什么图片格式都支持上传
blur和change的区别
发ajax的请求校验用户是否存:
name失去焦点发ajax的请求校验用户是否存在
$("#id_username").change(function () { alert(‘change‘) } 应该使用blur,change只校验一次,如果值发生改变,第二次不再校验 $("#id_username").blur(function () { alert(‘blur‘) }
标签:type file 请求 input col bsp 用户 图片 image
原文地址:https://www.cnblogs.com/cao123/p/10040096.html