邓力波 发表于 2023-3-28 17:09:03

JavaScript实现文件上传demo

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>文件上传</title>
</head>

<body>
    <form action="http://localhost:61998/file/upload" method="post" enctype="multipart/form-data">
      <input type="file" name="file">
      

      <button type="submit">提交</button>
    </form>
</body>


</html>
来源:https://www.cnblogs.com/letgofishing/p/17266068.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: JavaScript实现文件上传demo