运行 ❯
获取您
自身
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The input multiple attribute</h1> <p>Try selecting more than one file when browsing for files.</p> <form action="/action_page.php"> <label for="files">Select files:</label> <input type="file" id="files" name="files" multiple><br><br> <input type="submit"> </form> </body> </html>