HTML中的文件上载问题

Once I upload a file through input type, it then gets disabled, can't upload another file until the page is refreshed. I don't want to upload multiple files at once, but one after the other. Then click on submit.

My code:

<i class="fa fa-video-camera"></i>
<span>
    <input type="file" id="video-dancing" name="postVideo" accept="video/*">
</span>

use attribute multiple to select multiple files.

<input type="file" id="video-dancing" name="postVideo" accept="video/*" multiple >

Once the first upload is complete, simply add code to refresh the page.