3 - 12 编程练习
来源:3-12 编程练习
目訫
2019-02-12 21:11:40
<html> <head> <meta charset="utf-8"> <title>表单新属性multiple</title> </head> <body> <!-- 此处写代码 --> <form> <label> <span>请输入用户名:</span> <input type="text" name="userName" autofocus="autofocus" autocomplete="off" /> </label> <br /> <label> <span>请选择文件:</span> <input type="file" name="file" multiple="multiple" /> </label> </form> </body> </html>
1回答
你好,用户名和选择文件没有问题,但是效果图中是有提交按钮的,可以完善下:
祝学习愉快!
相似问题