老师,帮我看看作业,谢谢
来源:3-12 编程练习
慕函数3468989
2018-10-19 11:09:13
<html>
<head>
<meta charset="utf-8">
<title>表单新属性multiple</title>
</head>
<body>
<!-- 此处写代码 -->
<hr>
<p>请输入用户名:<input type='text'></p>
<p>请选择文件:<input type='file' multiple='multiple'></p>
<p><input type='submit'></p>
</body>
</html>
1回答
代码是不完善的,想要提交,外层需要form表单。input标签要有自动聚焦的功能,所以需要autofocus属性。需要使用autoComplete属性来关闭自动填充的功能。参考:
自己可以测试下,祝学习愉快!
相似问题