suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Bitte sagen Sie mir, welches Plug-in zum Hochladen von JQ-Dateien verwendet werden kann.

Ich möchte eine Datei-Upload-Funktion im Projekt implementieren. Bitte sagen Sie mir, wie ich sie über Jq implementieren kann

怪我咯怪我咯2811 Tage vor815

Antworte allen(5)Ich werde antworten

  • 仅有的幸福

    仅有的幸福2017-05-18 10:57:05

    jquery-plugins上传-1-jq.网上这种写好的插件太多了。

    Antwort
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-18 10:57:05

    uoloadify,公司项目里用了这个,建议用最新版本的,我们公司的后端非要用老版本的,结果很多东西要自己写,烦死了。
    uploadify,分swf和H5两个版本,H5版本是收费的,swf版本兼容性好

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-18 10:57:05

    用base64上传

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-05-18 10:57:05

    使用jquery.form.js就可以了
    https://github.com/jquery-for...

    $('#form').ajaxSubmit({
        url : '${ctx}/file/upload',
        data : {
        },
        dataType : 'json',
        success : function(data) {
        },
        error : function(data) {
        }
    });
    <form id="form" method="post" novalidate enctype="multipart/form-data">
        <input name="file" type="file" />
    </form>

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-18 10:57:05

    直接用formdata配合type为file的input标签就可以了呀

    Antwort
    0
  • StornierenAntwort