duanbaque4230 2016-03-15 06:47
浏览 79
已采纳

如何将输入表单字段中的多个值保存到JS变量?

I am using plupload to upload image files. My goal is to save the name of the uploaded thumb_nail files to a session, in case user leaves page or an submit error happens.

Plupload creates file_names in this manner:

<div id="files">
    <input type="hidden" id="p1adsfucka1h0p1s0624cauu623" name="files[]" value="p1adsfucka1h0p1s0624cauu623.jpg">
    <input type="hidden" id="p1adsfucka1h0p1s0624cauu624" name="files[]" value="p1adsfucka1h0p1s0624cauu623.jpg">
</div>

from plupload functions I want to call this function:

function autosave_form_cl(session_name){
    console.log($("input[name=files").val() + $('#title').val());
    $.post("/act_autosave_formdata.php", { 
          session_name:session_name,
          cellphone:    $('#cellphone').val(),
          files:        $("input[name=files").val()
    } );    
}

This returns an undefined for the value of the file fields. How could I access and save those names? Submitting and saving the values to a session works by accessing $_POST.

  • 写回答

1条回答 默认 最新

  • dongqian2021 2016-03-15 06:53
    关注

    Collect all [name=files] first then pass it to your $.post.

    I assume what's inside <div id="files"> is all inputs with [name=files]

    function autosave_form_cl(session_name){
        //console.log($("input[name=files]").val() + $('#title').val());
        files = [];
        $('div#id').find('input').each(function(i,inp){
            files.push($(inp).val());
        });
        console.log(files);
        $.post("/act_autosave_formdata.php", { 
            session_name:session_name,
            cellphone:    $('#cellphone').val(),
            files:        files
        } );    
    }
    

    Let me know if it works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备