Is it possible to remove individual values from an file input multiple element?

前端 未结 2 1289
悲&欢浪女
悲&欢浪女 2020-12-10 12:12

I\'m trying to remove or somehow nullify a single value in a single input for multiple files. Let\'s say we have four values...



        
相关标签:
2条回答
  • 2020-12-10 12:32

    I'm curious to why splice does not work. Normally it's very easy to do this:

    var list = [4,5,6];
    list.splice(1,1);
    console.log(list); // [4,6]
    

    So if this doesn't work, I'd like to know what the results are.

    Edit

    Btw, you need to use:

    var input = document.getElementById('input');
    

    You have to declare your variables with 'var'.

    0 讨论(0)
  • 2020-12-10 12:48

    It’s readonly.

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