HTML File Upload Doesn't Show Gallery on Android

前端 未结 2 1061
闹比i
闹比i 2021-02-19 06:59

I\'d like my PHP app to accept a photo chosen from a mobile user\'s gallery. I\'m testing on Android 4.4.4 using Chrome. This is my form:

相关标签:
2条回答
  • 2021-02-19 07:34

    Try to use <input name="userfile" type="file" accept="image/*" />

    instead of <input name="userfile" type="file" accept="images/*" />.

    It works for me.

    0 讨论(0)
  • 2021-02-19 07:46

    Turns out this is a known bug in Android >= 4.4. My code works as expected in iOS.

    0 讨论(0)
提交回复
热议问题