jQuery upload file using jQuery's ajax method (without plugins)

后端 未结 5 1835
温柔的废话
温柔的废话 2021-02-01 23:41

At moment I want to implement picture upload without using any plug-ins.

My upload form looks like this

5条回答
  •  南旧
    南旧 (楼主)
    2021-02-02 00:22

    Whilst you could create a multipart/form-data request body yourself to include a file upload field, it's not going to help you because you cannot read client-side files from the file upload field.

    (Except using the FileList interface, but currently only Firefox supports that.)

提交回复
热议问题