如何在网页上上传文件 求方法
发布网友
发布时间:2022-04-26 03:11
我来回答
共1个回答
热心网友
时间:2022-06-20 09:30
在html文件中添加一个上传表单就可以了
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="" method="" accept-charset="utf-8">
<input type="file" name="file">
<p><input type="submit" value="上传" /></p>
</form>
</body>
</html>
存储为html文件就可以了