19 lines
457 B
HTML

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>01 FormTest</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
</head>
<body>
<form method="POST" action="#" enctype="multipart/form-data">
<input name="name" type="hello" />
<input name="file1" type="file" />
<button type="submit">上传</button>
</form>
</body>
</html>