移动端使用input type=file时没有type类型判断
js 手机 移动 移动端 input type file type 空 <input id="img1" type="file" name="file" accept="audio/mpeg" /> $('#img1')[0].files[0] //获取到如下图片 在pc端能获取到type类型,但是到了移动端就不能获取了 type为空。 1,解决…
702 2019-08-08 去围观解决:Uncaught TypeError: Illegal invocation报错
在使用ajax时,出入的参数不正确才报错的。 url :basePath+API.uploadMusic, type : 'post', clearForm : true, resetForm : true, data:JSON.stringify(formData), //传入的参数不正确,才会报该错误
868 2019-08-08 去围观input type=file accept中可以限制的文件类型
在上传文件的时候,需要限制指定的文件类型。 <input type="file" accept="image/*" /> accept表示可以上传文件类型,image表示图片,*表示所有支持的格式。 image/* ,允许上传所有图片格式 accept可以指定如下信息: …
639 2019-08-08 去围观微信jssdk授权签名以及config配置
凡是要想在h5页面使用jweixin.js的功能就必须授权签名才行。以下流程 1,申请公众账号测试 或者 是已经有了公众号 https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index 2,用appID和 appsecret来换取access_token a…
1,398 2019-07-28 去围观