所以,这是我在W3CSCHOOL的html中使用的代码
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
Select images: <input type="file" name="img" multiple>
<input type="submit">
</form>
<p>Try selecting more than one file when browsing for files.</p>
<p><strong>Note:</strong> The multiple attribute of the input tag is not supported in Internet Explorer 9 and earlier versions.</p>
</body>
</html>
action_page.php将显示您选择的文件。但是它将按名称顺序而不是选择顺序显示。我想知道是否有任何更改文件的顺序?也许根据选择顺序?
答案 0 :(得分:0)
没有选择顺序。 所有文件都一起被选中。
您可以根据用户要求动态添加更多图像输入。