search

Home  >  Q&A  >  body text

jq 读取 input 内容多个值的问题?

<input type="file" name="pic[]" multiple="true"/>

input点击可选择多个,怎么读取上传了多少个,和分别的名字我试着 $('input').val();可是只能读取第一个名字,后面的没读到


素颜素颜2799 days ago1341

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 01:11:40

    jq Problem reading multiple values ​​from input content? -PHP Chinese website Q&A-jq Problem reading multiple values ​​​​from the input content? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 迷茫

    迷茫2017-03-29 09:30:13

    var values = [];
    $('input').each(function(i, obj){
        values.push($(this).val());
    }console.log(values);    
    //all inputs value


    reply
    0
  • Cancelreply